ZIP Code
Postal ZIP Code associated with the vendor location recorded for this Other Transaction IDV. It identifies the site-level mailing or geographic code used for that vendor location, not the award office or contracting activity.
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 grouping of vendor locations
- ZIP-to-county or ZIP-to-metropolitan mapping
- Filtering awards by vendor site region
Common Mistakes
- Casting the ZIP code to a number and losing leading zeros
- Using it as the award location instead of the vendor site location
Query Guidance
Use string-based comparisons and standardize formatting before joining to postal or geospatial reference tables. If you need regional analysis, normalize to 5-digit ZIP or ZIP+4 as appropriate, and validate nulls, blanks, and nonstandard codes before aggregation.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorLocation__ZIPCode AS z_i_p_code
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorLocation__ZIPCode IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorLocation__ZIPCode AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorLocation__ZIPCode 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.