Generic String05
A free-text generic string attribute stored in the IDV Generic Tags section of the FPDS record. It is one of several similarly named custom text slots used to carry supplemental information that is not part of the core award schema.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Filtering on agency-defined supplemental tags
- Grouping records by custom metadata
- Supporting data-quality checks and exception review
Common Mistakes
- Assuming it has a government-wide standardized meaning
- Using it as a primary analytical dimension without validating observed values
Query Guidance
Use exact-match, LIKE, or normalization logic only after profiling the field values. In SQL, handle it as a nullable text column and, where appropriate, trim, upper/lower-case, or pattern-match it rather than expecting numeric or coded semantics.
SQL Examples
Preview values
SELECT
content__IDV__genericTags__genericStrings__genericString05 AS generic_string05
FROM fpds.data
WHERE content__IDV__genericTags__genericStrings__genericString05 IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__genericTags__genericStrings__genericString05 AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__genericTags__genericStrings__genericString05 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.