City
City name for the vendor’s reported location in the Vendor Site Details section of an Other Transaction Award record. It identifies the municipality associated with the vendor site rather than the contracting office or place of performance.
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
- Grouping awards by vendor city
- Mapping vendor geographic distribution
- Joining with state or ZIP for location analysis
Common Mistakes
- Using city alone to identify a unique vendor location
- Confusing vendor location city with place of performance or agency office city
Query Guidance
Use this field in SELECT and GROUP BY for location summaries, and pair it with state, ZIP, or country fields to avoid ambiguous rollups. In SQL, apply trimming and case normalization where needed, and filter with exact or standardized text matching rather than assuming a controlled vocabulary.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorLocation__city AS city
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorLocation__city IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorLocation__city AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorLocation__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.