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.

Family: IDV
Category: Vendor Site Details
Data Type: string
Semantic Type: label
Mapping: flattened_fpds_xml_field
AI Confidence: high

Variable Overview

FPDS Query Variable
content__IDV__vendor__vendorSiteDetails__vendorLocation__countryCode__name
Title
Country Code Name
FPDS Path
IDV/vendor/vendorSiteDetails/vendorLocation/countryCode/name
Description
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.
Business Meaning
This field supports analysis of vendor geography, domestic versus foreign sourcing, and the international distribution of awardees or supplier locations. It is useful for market concentration, supply chain risk, and policy compliance reviews that depend on vendor location.
Example Value
UNITED STATES
Observed Non-Null Count
4,566,591

FPDS Compare

FPDS Query Variable
content__IDV__vendor__vendorSiteDetails__vendorLocation__countryCode__name
FPDS XML Path
IDV/vendor/vendorSiteDetails/vendorLocation/countryCode/name
Mapping Type
flattened_fpds_xml_field
Comparison Summary
FPDS Query flattens the original nested FPDS XML path 'IDV/vendor/vendorSiteDetails/vendorLocation/countryCode/name' into the SQL-ready variable 'content__IDV__vendor__vendorSiteDetails__vendorLocation__countryCode__name'.

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.