Generic String04
A free-text generic string attribute in the Award-level Generic Tags segment of the FPDS record. It stores a reusable supplemental value and is not a standard core award field; the actual meaning depends on the agency or workflow that populated it.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Filtering awards by a custom agency-defined tag
- Grouping transactions by a supplemental business label
- Supporting reusable analytic rules or data quality checks
Common Mistakes
- Assuming the value has a government-wide standard meaning
- Using it as a validated code without confirming local documentation or observed values
Query Guidance
Use it as a text filter or grouping field only after profiling distinct values and confirming the agency’s convention. In SQL, compare against exact observed strings, normalize case/whitespace if needed, and avoid joining it as if it were a stable coded key unless you have a maintained lookup table.
SQL Examples
Preview values
SELECT
content__award__genericTags__genericStrings__genericString04 AS generic_string04
FROM fpds.data
WHERE content__award__genericTags__genericStrings__genericString04 IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__genericTags__genericStrings__genericString04 AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__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.