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".

Family: Other Transaction IDV
Category: Place Of Performance
Data Type: string
Semantic Type: label
Mapping: flattened_fpds_xml_field
AI Confidence: high

Variable Overview

FPDS Query Variable
content__OtherTransactionIDV__contractDetail__placeOfPerformance__principalPlaceOfPerformance__stateCode__name
Title
State Code Name
FPDS Path
OtherTransactionIDV/contractDetail/placeOfPerformance/principalPlaceOfPerformance/stateCode/name
Description
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".
Business Meaning
This field supports geographic analysis of where work is expected to be performed, which matters for regional spending patterns, local economic impact, and compliance or outreach analysis. It is useful for summarizing performance locations at the state level without relying on coded values alone.
Example Value
CALIFORNIA
Observed Non-Null Count
13,126

FPDS Compare

FPDS Query Variable
content__OtherTransactionIDV__contractDetail__placeOfPerformance__principalPlaceOfPerformance__stateCode__name
FPDS XML Path
OtherTransactionIDV/contractDetail/placeOfPerformance/principalPlaceOfPerformance/stateCode/name
Mapping Type
flattened_fpds_xml_field
Comparison Summary
FPDS Query flattens the original nested FPDS XML path 'OtherTransactionIDV/contractDetail/placeOfPerformance/principalPlaceOfPerformance/stateCode/name' into the SQL-ready variable 'content__OtherTransactionIDV__contractDetail__placeOfPerformance__principalPlaceOfPerformance__stateCode__name'.

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.