State Code Name
Human-readable name for the state associated with the principal place of performance in an Other Transaction IDV record. This is the text label paired with the underlying state code, such as "CALIFORNIA".
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 rollups of principal place of performance
- Readable display in dashboards and reports
- Validation of decoded location values against state codes
Common Mistakes
- Using the label as a join key instead of the code
- Assuming the field is always populated or normalized
Query Guidance
Select this field for display or grouping after verifying it matches the paired state code. In SQL, use the code field for joins and filters, and the name field only for presentation; if needed, deduplicate by the code to avoid multiple spellings of the same state.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__placeOfPerformance__principalPlaceOfPerformance__stateCode__name AS state_code_name
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__placeOfPerformance__principalPlaceOfPerformance__stateCode__name IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionIDV__contractDetail__placeOfPerformance__principalPlaceOfPerformance__stateCode__name AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__placeOfPerformance__principalPlaceOfPerformance__stateCode__name 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.