Generic String02
A free-text generic string stored in the Award-level Generic Tags section of the FPDS record. It is not a standardized procurement attribute and may contain an internal label, identifier, or analyst-defined value depending on the source workflow.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Custom filtering on internally defined award tags
- Grouping records in workflow-specific procurement analytics
- Joining to a local lookup table or tagging convention
Common Mistakes
- Assuming the field has a government-wide standardized definition
- Using the raw value as a business category without validating its source meaning
Query Guidance
Use it as a string filter or join key only when you have validated the local tag semantics. In SQL, compare exact values or normalized variants as needed, and consider selecting distinct values first to understand observed patterns before building CASE logic or grouping.
SQL Examples
Preview values
SELECT
content__award__genericTags__genericStrings__genericString02 AS generic_string02
FROM fpds.data
WHERE content__award__genericTags__genericStrings__genericString02 IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__genericTags__genericStrings__genericString02 AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__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.