Country Code Name
Human-readable country name for the vendor location recorded in the IDV vendor site details. It is the label paired with the underlying country code and identifies the country associated with the vendor site.
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
- Classifying vendor sites as U.S. or non-U.S.
- Summarizing vendor location by country
- Labeling country values in reports and dashboards
Common Mistakes
- Using the name field as a stable join key instead of the country code
- Assuming the displayed name is standardized across all records without checking for variants
Query Guidance
Select this field for display, filtering, or validation of the coded country value, but group and join on the associated country code when available. In SQL, consider normalizing text case and trimming whitespace, and compare against the code field to detect mismatches or unmapped labels.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorLocation__countryCode__name AS country_code_name
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorLocation__countryCode__name IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorLocation__countryCode__name AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorLocation__countryCode__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.