ZIP Code
Postal ZIP code recorded for the vendor site location associated with the other transaction award. It identifies the geographic delivery or administrative point for the vendor address in the FPDS record.
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 vendor mapping
- regional award concentration analysis
- ZIP-based data enrichment or aggregation
Common Mistakes
- casting to integer and dropping leading zeros
- assuming the ZIP code represents the place of performance or primary corporate address
Query Guidance
Use as a text field for filtering, grouping, and joins to geographic reference tables. In SQL, store and compare it as a string, normalize formatting only after preserving the original value, and use substring or left-pad logic if you need 5-digit ZIP aggregation.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorLocation__ZIPCode AS z_i_p_code
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorLocation__ZIPCode IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorLocation__ZIPCode AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__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.