County
County name associated with the ZIP code reported for the place of performance in an Other Transaction Award record. This is an identifier-style geographic value used to label the performance location at the county level, not a narrative location description.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
- Geographic award analysis
Common Usage
- County-level geospatial aggregation of award performance locations
- Joining to census or geographic reference data for regional analysis
- Filtering awards performed in a specific county
Common Mistakes
- Assuming the county value is a full postal address or exact site location
- Grouping by county name without also using state or another disambiguating geographic field
Query Guidance
Use this field for equality filters, grouping, and joins to county reference tables after normalizing case and whitespace. In SQL, combine it with state or ZIP-derived fields when counting or mapping performance locations to avoid duplicate county names across states.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__placeOfPerformance__placeOfPerformanceZIPCode__county AS county
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__placeOfPerformance__placeOfPerformanceZIPCode__county IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionAward__contractDetail__placeOfPerformance__placeOfPerformanceZIPCode__county AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__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.