Location Code
Code identifying the principal place of performance for the award. It is a coded location value, not a narrative address, and is used to represent the primary geographic site where contract work is expected to be performed.
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 rollups of award activity by place of performance
- Joining to location reference tables for state or county reporting
- Comparing performance location to vendor location or award office location
Common Mistakes
- Using the code as if it were a human-readable place name
- Aggregating without joining to the correct geographic reference or crosswalk
Query Guidance
Use this field as a join key or grouping key after normalizing its format and verifying the code set. In SQL, filter or group on the code only when you have a reliable reference mapping; otherwise join to a location dimension table to derive state, city, or region attributes for analysis.
SQL Examples
Preview values
SELECT
content__award__placeOfPerformance__principalPlaceOfPerformance__locationCode AS location_code
FROM fpds.data
WHERE content__award__placeOfPerformance__principalPlaceOfPerformance__locationCode IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__placeOfPerformance__principalPlaceOfPerformance__locationCode AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__placeOfPerformance__principalPlaceOfPerformance__locationCode 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.