Country of Incorporation
Country where the vendor organization is legally incorporated. In FPDS Other Transaction Award records, this is a vendor site attribute that identifies the jurisdiction of incorporation rather than the physical location of performance.
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
- Identify awards to foreign-incorporated vendors
- Group vendor population by incorporation jurisdiction
- Support compliance, risk, and market structure analyses
Common Mistakes
- Using it as a proxy for vendor headquarters or performance location
- Failing to normalize abbreviated or variant country values
Query Guidance
Filter or group on the normalized incorporation country value, typically with UPPER(TRIM(countryOfIncorporation)). Use CASE logic or a country reference table to standardize variants like USA, US, and United States before aggregation, and avoid joining on this field unless it has been cleaned to a common code set.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorOrganizationFactors__countryOfIncorporation AS country_of_incorporation
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorOrganizationFactors__countryOfIncorporation IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorOrganizationFactors__countryOfIncorporation AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__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.