Country Code Name
Human-readable country label for the vendor location recorded in the award. It is the description side of a coded country value and identifies the country associated with the vendor site address.
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
- Count awards by vendor country
- Separate domestic from foreign vendor locations
- Display readable vendor geography in reports
Common Mistakes
- Using the label as if it were the authoritative code field
- Assuming the vendor location country equals place of performance
Query Guidance
Select and group by this field for reporting-level country rollups, but join or filter on the paired country code when exact matching or normalization is required. Use DISTINCT carefully because label variants, nulls, or formatting differences may appear across records.
SQL Examples
Preview values
SELECT
content__award__vendor__vendorSiteDetails__vendorLocation__countryCode__name AS country_code_name
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorLocation__countryCode__name IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__vendor__vendorSiteDetails__vendorLocation__countryCode__name AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__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.