Country Code
Code identifying the country where the principal place of performance for the Other Transaction IDV is located. It is stored as a standardized location identifier rather than a free-text place name.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
- Geographic award analysis
Common Usage
- Identify the country of principal performance for an award
- Separate U.S. and non-U.S. performance locations
- Aggregate awards by country for geographic analysis
Common Mistakes
- Treating the code as a human-readable country name
- Assuming all values use the same code standard without validation
Query Guidance
Use this field as a grouping or filter key in WHERE and GROUP BY clauses, and join it to a country reference table when translating codes to names. Standardize values before analysis and validate whether nulls, nonstandard codes, or legacy codes appear in the dataset.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__placeOfPerformance__principalPlaceOfPerformance__countryCode AS country_code
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__placeOfPerformance__principalPlaceOfPerformance__countryCode IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionIDV__contractDetail__placeOfPerformance__principalPlaceOfPerformance__countryCode AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__placeOfPerformance__principalPlaceOfPerformance__countryCode 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.