Generic String03
A free-text Generic Tags string field stored on the IDV record at genericString03. It holds an auxiliary descriptor or label used by FPDS for reusable tagging, not a core procurement business datum like award amount or vendor name.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Custom filter or segmentation in IDV-level analysis
- Agency-specific grouping of awards or vehicles
- Supplemental tagging for data quality review or workflow logic
Common Mistakes
- Assuming the field has a government-wide standard meaning
- Using it as a join key without validating value consistency
Query Guidance
Use it as a nullable text filter or grouping column, typically with LIKE, IN, or TRIM/UPPER normalization for inconsistent free-text values. When aggregating, deduplicate carefully because the same concept may appear with spelling or casing variation; if the field behaves like a code label, join or reconcile it with the corresponding coded field or neighboring generic string values.
SQL Examples
Preview values
SELECT
content__IDV__genericTags__genericStrings__genericString03 AS generic_string03
FROM fpds.data
WHERE content__IDV__genericTags__genericStrings__genericString03 IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__genericTags__genericStrings__genericString03 AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__genericTags__genericStrings__genericString03 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.