Generic String05
A free-text generic string field stored in the award-level Generic Tags section. It is an extensible attribute used to carry custom or campaign-specific text values that do not belong to a standard FPDS coded field.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Filter awards using agency-defined metadata
- Group records for custom procurement reporting
- Audit non-core attributes carried in award records
Common Mistakes
- Assuming the field has a government-wide standard meaning
- Using the text value without verifying agency-specific context
Query Guidance
Use exact match, LIKE, or NULL checks depending on the data quality and observed value patterns. In SQL, qualify the field with other Generic Tags or award identifiers when grouping or filtering, and avoid hard-coding interpretations unless you have a maintained mapping table.
SQL Examples
Preview values
SELECT
content__award__genericTags__genericStrings__genericString05 AS generic_string05
FROM fpds.data
WHERE content__award__genericTags__genericStrings__genericString05 IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__genericTags__genericStrings__genericString05 AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__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.