City
Human-readable city name for the place of performance ZIP code recorded in the Other Transaction IDV contract detail. It identifies the locality associated with where the work is expected to be performed, rather than the award office or vendor address.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
- Geographic award analysis
Common Usage
- group awards by place-of-performance city
- map procurement activity by locality
- validate or enrich ZIP/state-based location analysis
Common Mistakes
- confusing place of performance city with contractor headquarters city
- assuming city values are standardized or unique
Query Guidance
Use this field as a dimension for grouping or filtering after trimming and normalizing case/spaces. For geographic reporting, join or compare it with ZIP code and state fields, and avoid using it as a key unless combined with other location attributes.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__placeOfPerformance__placeOfPerformanceZIPCode__city AS city
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__placeOfPerformance__placeOfPerformanceZIPCode__city IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionIDV__contractDetail__placeOfPerformance__placeOfPerformanceZIPCode__city AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__placeOfPerformance__placeOfPerformanceZIPCode__city 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.