State of Incorporation Name
Human-readable name of the state or jurisdiction where the vendor is incorporated. This is the label value associated with the underlying state-of-incorporation classification in the vendor organization factors structure.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
- Contractor profiling and competitor analysis
Common Usage
- Group vendors by state of incorporation
- Compare incorporation jurisdiction with award or performance patterns
- Validate vendor entity attributes against related coded fields
Common Mistakes
- Confusing state of incorporation with physical vendor location or principal place of business
- Using the raw label without checking for abbreviations, aliases, or inconsistent capitalization
Query Guidance
Select this field when you need the display value for incorporation state. In SQL, filter or group on the normalized string after trimming and standardizing case, and join to coded counterparts only if you need a canonical state reference or crosswalk.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorOrganizationFactors__stateOfIncorporation__name AS state_of_incorporation_name
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorOrganizationFactors__stateOfIncorporation__name IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorOrganizationFactors__stateOfIncorporation__name AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorOrganizationFactors__stateOfIncorporation__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.