Generic String04
This field stores the fourth generic string value in the Other Transaction Award generic tags group. It is a free-text attribute used to carry record-specific information that does not have a fixed FPDS semantic definition.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- custom award flag
- agency-specific metadata filter
- supplemental grouping key
Common Mistakes
- assuming a government-wide standard meaning
- using the field without validating observed value patterns
Query Guidance
Use it as a text filter or grouping field only after profiling distinct values and validating local meaning. In SQL, normalize case and trim whitespace before comparison, and prefer joins or CASE logic based on observed agency-specific code sets rather than hard-coding interpretations.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__genericTags__genericStrings__genericString04 AS generic_string04
FROM fpds.data
WHERE content__OtherTransactionAward__genericTags__genericStrings__genericString04 IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionAward__genericTags__genericStrings__genericString04 AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__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.