Country Code Name
Human-readable country name for the principal place of performance associated with the Other Transaction IDV record. This is the label counterpart to the country code in the place-of-performance structure, not the coded value itself.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
- Geographic award analysis
Common Usage
- Geographic distribution of principal performance locations
- Domestic vs. foreign performance analysis
- Normalization of place-of-performance country labels
Common Mistakes
- Using the country name as a join key instead of the code
- Assuming the label is standardized across all records or time periods
Query Guidance
Use this field for display, grouping, or validation of the country code, but filter and join on the corresponding country code when possible. In SQL, normalize case and trim whitespace if comparing labels, and handle null or blank values explicitly.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__placeOfPerformance__principalPlaceOfPerformance__countryCode__name AS country_code_name
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__placeOfPerformance__principalPlaceOfPerformance__countryCode__name IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionIDV__contractDetail__placeOfPerformance__principalPlaceOfPerformance__countryCode__name AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__placeOfPerformance__principalPlaceOfPerformance__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.