Generic String07
Free-text generic string slot 07 in the Other Transaction IDV generic tags group. It stores an organization-defined value rather than a standardized FPDS business term, so the meaning depends on how the awarding office populated it.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- office-specific categorization
- custom grouping in dashboards
- crosswalks to internal systems
Common Mistakes
- assuming a universal FPDS definition
- analyzing the field without confirming agency-specific meaning
Query Guidance
Use this field as a raw string filter, grouping key, or join candidate only after confirming its local semantics. In SQL, test for nulls, trim whitespace, and standardize case before comparing values; if the content is coded, preserve the original value and map it through a validated reference table.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__genericTags__genericStrings__genericString07 AS generic_string07
FROM fpds.data
WHERE content__OtherTransactionIDV__genericTags__genericStrings__genericString07 IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionIDV__genericTags__genericStrings__genericString07 AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__genericTags__genericStrings__genericString07 IS NOT NULL
GROUP BY value
ORDER BY record_count DESC
LIMIT 25
Each dictionary item includes SQL-ready examples generated alongside the variable metadata, allowing immediate use in FPDS Query for filtering, aggregation, and analysis.