State of Incorporation
State or jurisdiction where the vendor is legally incorporated. This is a vendor organizational attribute, not the place where work is performed or the mailing address; the example value suggests a two-letter state code such as "IN".
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
- Filter awards to in-state or out-of-state vendors
- Profile vendor legal domicile by agency, NAICS, or award type
Common Mistakes
- Using it as a proxy for place of performance
- Assuming it matches the vendor's business address or headquarters
Query Guidance
Use this field as a categorical filter or GROUP BY dimension, typically after trimming and normalizing case. If the dataset includes both code and description fields, prefer the coded value for joins and the description only for display; handle NULL, blank, and non-U.S. entries explicitly.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorOrganizationFactors__stateOfIncorporation AS state_of_incorporation
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorOrganizationFactors__stateOfIncorporation IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorOrganizationFactors__stateOfIncorporation AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorOrganizationFactors__stateOfIncorporation 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.