City
Human-readable city name for the place where contract performance occurs under an Other Transaction Award. It identifies the municipality recorded in the FPDS place-of-performance ZIP code component, such as a city tied to the 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
- Summarizing obligations by performance city
- Linking awards to metropolitan or local market areas
- Validating performance location against ZIP or state fields
Common Mistakes
- Confusing place of performance city with vendor headquarters city
- Grouping on this field without normalizing spelling or handling duplicates
Query Guidance
Use as a descriptive grouping field, typically together with state and ZIP code. In SQL, normalize case and trim whitespace before grouping or joining, and avoid using it alone as a geographic identifier because the same city name can appear in multiple states.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__placeOfPerformance__placeOfPerformanceZIPCode__city AS city
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__placeOfPerformance__placeOfPerformanceZIPCode__city IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionAward__contractDetail__placeOfPerformance__placeOfPerformanceZIPCode__city AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__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.