Generic String09
A free-text generic string attribute stored in the IDV Generic Tags section of the FPDS record. It is one of the reusable user-defined fields and does not have a fixed government-wide business definition in the base schema.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- filtering IDV records by locally defined tags
- grouping records for internal reporting
- supporting reusable analysis rules or segmentation
Common Mistakes
- assuming the value has a standard FPDS-wide definition
- grouping without checking for spelling variants, abbreviations, or agency-specific coding
Query Guidance
Use this field as a free-text filter or grouping attribute, typically with exact-match, LIKE, or normalized distinct-value analysis. In SQL, trim and standardize the text before aggregation, and only join or interpret it through a related description field if one exists in the source extract.
SQL Examples
Preview values
SELECT
content__IDV__genericTags__genericStrings__genericString09 AS generic_string09
FROM fpds.data
WHERE content__IDV__genericTags__genericStrings__genericString09 IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__genericTags__genericStrings__genericString09 AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.