Country of Incorporation
Country where the vendor entity is legally incorporated. It identifies the jurisdiction of incorporation recorded for the vendor site organization factor in the FPDS IDV record.
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
- Separate domestic and foreign-incorporated vendors
- Group IDVs by incorporation jurisdiction
- Support compliance and supply chain risk analysis
Common Mistakes
- Using this field as the vendor's physical address country
- Confusing incorporation country with place of performance or vendor nationality
Query Guidance
Filter and group on the stored value directly, but normalize country representations when possible because FPDS extracts may contain codes, abbreviations, or free-text variants. Use this field alongside vendor identifiers and location fields to avoid misclassification in SQL joins and summaries.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorOrganizationFactors__countryOfIncorporation AS country_of_incorporation
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorOrganizationFactors__countryOfIncorporation IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorOrganizationFactors__countryOfIncorporation AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorOrganizationFactors__countryOfIncorporation 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.