State of Incorporation Name
Human-readable name of the vendor's state of incorporation recorded in the award data. This is the descriptive label for the underlying incorporation-state value, not a geographic location of performance or headquarters.
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
- Grouping awards by state of incorporation
- Displaying the vendor's incorporation jurisdiction in reports
- Joining to state reference tables or corporate entity datasets
Common Mistakes
- Using it as a proxy for vendor location or place of performance
- Assuming it is always a normalized code rather than a text label
Query Guidance
Use the field as a dimension for filtering, grouping, and presentation. If the dataset includes a companion coded field, join or compare against that field for normalization; when aggregating, standardize casing and trim whitespace, and consider mapping variant labels such as full state names and District of Columbia consistently.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorOrganizationFactors__stateOfIncorporation__name AS state_of_incorporation_name
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorOrganizationFactors__stateOfIncorporation__name IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorOrganizationFactors__stateOfIncorporation__name AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__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.