City
City name for the vendor's location recorded in the Vendor Site Details section of the FPDS Other Transaction IDV 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 vendor locations by city
- Mapping vendor geographic concentration
- Joining to city/state normalization or geocoding tables
Common Mistakes
- Confusing vendor city with place of performance or agency office location
- Assuming all city values are standardized or complete
Query Guidance
Select and group on this field only after trimming and normalizing case; for analysis, combine it with state or country to avoid ambiguous city names. Example: GROUP BY city, state, country, and use COALESCE or reference data to handle blanks and variant spellings.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorLocation__city AS city
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorLocation__city IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorLocation__city AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__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.