Generic String02
A free-text generic string stored in the Other Transaction Award generic tags block. It is an auxiliary attribute field, not a standardized procurement code or required award element.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- custom filtering of Other Transaction Award records
- grouping awards by internally defined tags
- joining to source-system business rules or reference tables
Common Mistakes
- assuming the value has a universal FPDS-defined meaning
- using the field without validating the source program or system that populated it
Query Guidance
Use exact-match or pattern-based predicates only after confirming the generating system's conventions; for example, WHERE genericString02 = 'PNG4ZBLA9F67' or WHERE genericString02 LIKE 'PNG%'. Avoid relying on this field for cross-agency comparisons unless the value set has been standardized.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__genericTags__genericStrings__genericString02 AS generic_string02
FROM fpds.data
WHERE content__OtherTransactionAward__genericTags__genericStrings__genericString02 IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionAward__genericTags__genericStrings__genericString02 AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__genericTags__genericStrings__genericString02 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.