State of Incorporation Name
Human-readable name of the vendor's state of incorporation stored in the award record. This field is the descriptive label for the incorporation-state value associated with the vendor organization factor.
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
- Vendor entity profiling by state of incorporation
- Matching incorporation jurisdiction to corporate registrations
- Filtering awards involving vendors incorporated in specific states
Common Mistakes
- Confusing state of incorporation with vendor address or place of performance
- Using the label without checking the paired coded field or normalization rules
Query Guidance
Use this field for descriptive filtering, grouping, or display only when you want the human-readable state name. For analysis, join or compare against the coded incorporation-state field when available, and standardize values with UPPER/TRIM or a reference mapping before grouping.
SQL Examples
Preview values
SELECT
content__award__vendor__vendorSiteDetails__vendorOrganizationFactors__stateOfIncorporation__name AS state_of_incorporation_name
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorOrganizationFactors__stateOfIncorporation__name IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__vendor__vendorSiteDetails__vendorOrganizationFactors__stateOfIncorporation__name AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__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.