Country Code Name
Human-readable country name for the vendor site location recorded on the award. This is the descriptive label paired with the underlying country code in the vendor location structure.
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 vendor site country on an award
- Separate domestic and foreign vendor locations
- Report vendor geography in dashboards
Common Mistakes
- Treating the name as a stable code for joins
- Assuming the field reflects the contractor headquarters rather than the recorded site location
Query Guidance
Prefer joining and filtering on the paired country code when available, then select this field for labels in result sets. In SQL, use it in GROUP BY only when exact text values are acceptable; otherwise normalize through the code field and handle null or inconsistent labels explicitly.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorLocation__countryCode__name AS country_code_name
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorLocation__countryCode__name IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorLocation__countryCode__name AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__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.