Country Code
Code identifying the country where contract performance is reported to occur at the principal place of performance. It is a standardized location code rather than a free-text geography field, and for this record the example value is USA.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
- Geographic award analysis
Common Usage
- Count or sum awards by performance country
- Filter domestic versus foreign performance
- Map contract performance geography for dashboards
Common Mistakes
- Confusing performance location with vendor address or place of award
- Assuming all records use full country names instead of codes
Query Guidance
Use this field in WHERE clauses and GROUP BYs for geographic segmentation, e.g. filter countryCode = 'USA' for U.S. performance or group by countryCode to compare cross-border activity. Join to a reference table or decode list when you need standardized country labels, and handle null or nonstandard values explicitly.
SQL Examples
Preview values
SELECT
content__award__placeOfPerformance__principalPlaceOfPerformance__countryCode AS country_code
FROM fpds.data
WHERE content__award__placeOfPerformance__principalPlaceOfPerformance__countryCode IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__placeOfPerformance__principalPlaceOfPerformance__countryCode AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__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.