Country of Incorporation
Identifies the country where the vendor organization is legally incorporated in the FPDS award record. It is a vendor site attribute, typically represented as a country name or code value such as "USA".
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
- Filter awards to U.S.-incorporated versus foreign-incorporated vendors
- Group vendors by incorporation country for market concentration analysis
- Support compliance and sourcing analyses involving domestic preference or foreign entity review
Common Mistakes
- Confusing incorporation country with vendor address country or place of performance
- Assuming a code like 'USA' is always the full country name without normalization
Query Guidance
Use this field in WHERE clauses and GROUP BY logic after normalizing country values to a consistent standard. For SQL, join or map to a country reference table when needed, and avoid using it as a proxy for vendor citizenship, performance location, or contract destination.
SQL Examples
Preview values
SELECT
content__award__vendor__vendorSiteDetails__vendorOrganizationFactors__countryOfIncorporation AS country_of_incorporation
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorOrganizationFactors__countryOfIncorporation IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__vendor__vendorSiteDetails__vendorOrganizationFactors__countryOfIncorporation AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__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.