City
Human-readable city name associated with the vendor location ZIP code in the IDV vendor site details. It is a geographic label rather than a code, and it identifies the city portion of the location reference for the vendor address.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
- Contractor profiling and competitor analysis
Common Usage
- Geographic rollups of vendor locations
- Filtering awards or vendors by city
- Cross-checking city against ZIP/state combinations
Common Mistakes
- Treating the city as a unique identifier instead of a descriptive location label
- Assuming the value is standardized without verifying spelling or ZIP consistency
Query Guidance
Filter and group on the city text only after normalizing case and whitespace; for reliable location analysis, join or compare it with ZIP code and state. In SQL, use exact matching for known cities and consider UPPER(TRIM(city)) for normalization, but avoid relying on city alone as a geographic key.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorLocation__ZIPCode__city AS city
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorLocation__ZIPCode__city IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorLocation__ZIPCode__city AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorLocation__ZIPCode__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.