Country of Incorporation Name
Human-readable country name for the vendor organization's country of incorporation in the FPDS IDV vendor site record. This is the descriptive label paired with the underlying country code or classified value, rather than the coded value itself.
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
- Classify vendors by incorporation country
- Filter for U.S. versus non-U.S. incorporated entities
- Display country names in reporting and dashboards
Common Mistakes
- Confusing incorporation country with vendor address or performance location
- Using the label field as a stable join key instead of the underlying country code
Query Guidance
Select this field for readable reporting, but join and aggregate on the corresponding country code when available. In SQL, normalize case and trim whitespace before grouping, and consider DISTINCT or lookup-table validation to handle alternate country labels.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorOrganizationFactors__countryOfIncorporation__name AS country_of_incorporation_name
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorOrganizationFactors__countryOfIncorporation__name IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorOrganizationFactors__countryOfIncorporation__name AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorOrganizationFactors__countryOfIncorporation__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.