Generic String09
An optional free-text string stored in the Other Transaction IDV generic tags section. It captures an additional reusable attribute value for the record, but the specific business meaning depends on how the awarding office populated the tag.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- custom filtering
- agency-specific grouping
- workflow or reporting logic
Common Mistakes
- assuming a government-wide standardized meaning
- using the field without validating how the submitting office populated it
Query Guidance
Use this column as a string filter or grouping key only after confirming the local meaning of the values. In SQL, compare against exact observed values, normalize case and whitespace when needed, and avoid joining on it unless you have documented agency-specific conventions.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__genericTags__genericStrings__genericString09 AS generic_string09
FROM fpds.data
WHERE content__OtherTransactionIDV__genericTags__genericStrings__genericString09 IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionIDV__genericTags__genericStrings__genericString09 AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__genericTags__genericStrings__genericString09 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.