Place of Performance ZIP Code
ZIP code recorded for the place where the work under the Other Transaction Award is performed. It is an identifier value that represents the performance location, not a descriptive location narrative.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
- Geographic award analysis
Common Usage
- Geographic grouping of performance locations
- Filtering awards by state, county, or metro area derived from ZIP
- Mapping performance location to socioeconomic or regional datasets
Common Mistakes
- Confusing performance ZIP with contractor headquarters or recipient mailing ZIP
- Aggregating raw ZIP+4 values without normalizing to a consistent geography
Query Guidance
Use this field as a geographic identifier in joins, filters, and mapping logic. In SQL, normalize to 5 digits when needed (for example, SUBSTR or LEFT on ZIP+4 values), and join to ZIP-to-state/county reference tables only after validating format and excluding null or malformed values.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__placeOfPerformance__placeOfPerformanceZIPCode AS place_of_performance_z_i_p_code
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__placeOfPerformance__placeOfPerformanceZIPCode IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionAward__contractDetail__placeOfPerformance__placeOfPerformanceZIPCode AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__placeOfPerformance__placeOfPerformanceZIPCode 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.