State Code
Code for the state where contract performance is expected to occur at the principal place of performance. It is a coded geographic identifier rather than a full text location, typically using two-letter postal abbreviations such as PA.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
- Geographic award analysis
Common Usage
- State-level aggregation of awarded obligations by performance location
- Filtering awards performed in a specific state
- Joining to state reference tables or geographic dimensions
Common Mistakes
- Confusing place of performance state with vendor headquarters state
- Assuming the value is a full state name instead of a code
Query Guidance
Use the code in equality filters, GROUP BY clauses, and joins to reference tables, e.g., WHERE content__award__placeOfPerformance__principalPlaceOfPerformance__stateCode = 'PA'. Normalize case and inspect for nulls or non-standard codes before aggregating.
SQL Examples
Preview values
SELECT
content__award__placeOfPerformance__principalPlaceOfPerformance__stateCode AS state_code
FROM fpds.data
WHERE content__award__placeOfPerformance__principalPlaceOfPerformance__stateCode IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__placeOfPerformance__principalPlaceOfPerformance__stateCode AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__placeOfPerformance__principalPlaceOfPerformance__stateCode 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.