Generic String08
A free-text generic string attribute stored under the Other Transaction IDV generic tags section. It is an auxiliary data element whose meaning depends on how the awarding agency populated the record, rather than a standardized FPDS business field.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Agency-specific tagging for internal analysis
- Custom grouping in reusable reports
- Supplemental text filtering when no standard field exists
Common Mistakes
- Assuming the value has a government-wide standard meaning
- Using it as a coded field without validating observed text patterns
Query Guidance
Use exact-match, LIKE, or normalization logic only after profiling distinct values and frequency. In SQL, filter cautiously with TRIM/UPPER if needed, and join or pivot it only when agency-specific documentation confirms the business meaning; otherwise treat it as descriptive text rather than a reliable categorical attribute.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__genericTags__genericStrings__genericString08 AS generic_string08
FROM fpds.data
WHERE content__OtherTransactionIDV__genericTags__genericStrings__genericString08 IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionIDV__genericTags__genericStrings__genericString08 AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__genericTags__genericStrings__genericString08 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.