Generic String04
A free-text generic string attribute stored in the IDV Generic Tags section of the FPDS record. It serves as a reusable custom text field rather than a standardized procurement code or canonical description.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- custom tagging for internal analysis
- grouping records in exploratory reporting
- supplementing filters when standard FPDS fields are insufficient
Common Mistakes
- assuming a government-wide standard code set
- using the field for direct comparisons without normalizing text
Query Guidance
Use exact match, LIKE, or regex logic only after validating the observed values and their formatting. If the field is used as a label for another coded attribute, pair it with the related code field in WHERE clauses and GROUP BY logic rather than relying on the text alone.
SQL Examples
Preview values
SELECT
content__IDV__genericTags__genericStrings__genericString04 AS generic_string04
FROM fpds.data
WHERE content__IDV__genericTags__genericStrings__genericString04 IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__genericTags__genericStrings__genericString04 AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__genericTags__genericStrings__genericString04 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.