Generic String07
A free-text generic tag field stored in the FPDS IDV record. It is one of several reusable generic string slots and may contain program-specific, agency-specific, or analysis-supporting text rather than a standardized FPDS code.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- custom filtering of IDV records
- grouping records by local tag values
- supporting exploratory analysis of agency-entered metadata
Common Mistakes
- assuming the field has a government-wide standardized meaning
- using it as a reliable analytical category without reviewing observed values
Query Guidance
Use it as a text filter or grouping field only after profiling distinct values and frequency. In SQL, normalize case and trim whitespace, then apply exact-match or pattern-based conditions based on the observed agency convention; avoid joining it to coded reference tables unless you have a validated mapping.
SQL Examples
Preview values
SELECT
content__IDV__genericTags__genericStrings__genericString07 AS generic_string07
FROM fpds.data
WHERE content__IDV__genericTags__genericStrings__genericString07 IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__genericTags__genericStrings__genericString07 AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__genericTags__genericStrings__genericString07 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.