County
Human-readable county name for the place where contract performance occurs, as reported in the award record’s place-of-performance ZIP code structure. It is a geographic label, not a numeric code, and may reflect the county associated with the reported performance location.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
- Geographic award analysis
Common Usage
- Geographic rollups of awards by performance county
- Joining FPDS performance locations to county reference or GIS data
- Filtering awards to a specific county or metro area
Common Mistakes
- Assuming the county is standardized across all records without cleaning
- Using this field alone to geocode or identify a unique location
Query Guidance
Use equality filters and standardized text normalization when grouping or joining, for example UPPER(TRIM(county)). For analysis, combine with ZIP code, state, and place-of-performance fields, and avoid relying on this field as a surrogate key unless you have already validated a reference mapping.
SQL Examples
Preview values
SELECT
content__award__placeOfPerformance__placeOfPerformanceZIPCode__county AS county
FROM fpds.data
WHERE content__award__placeOfPerformance__placeOfPerformanceZIPCode__county IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__placeOfPerformance__placeOfPerformanceZIPCode__county AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__placeOfPerformance__placeOfPerformanceZIPCode__county 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.