Country Code
Code identifying the country where the principal place of performance for the Other Transaction Award is located. It is stored as a coded location value rather than a free-text place name; the example value "USA" indicates the United States.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
- Geographic award analysis
Common Usage
- Filter awards by performance country
- Split domestic and non-domestic place of performance
- Map award activity by country
Common Mistakes
- Assuming the field contains a full country name instead of a code
- Using it as a recipient location instead of place of performance
Query Guidance
Filter on the exact stored code value, and group by the code for country-level summaries. If you need readable output, join or map to a country reference table; use NULL checks to separate missing location data from coded non-U.S. entries.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__placeOfPerformance__principalPlaceOfPerformance__countryCode AS country_code
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__placeOfPerformance__principalPlaceOfPerformance__countryCode IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionAward__contractDetail__placeOfPerformance__principalPlaceOfPerformance__countryCode AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__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.