Country Code
Code identifying the country associated with the primary consortia member's location in an Other Transaction IDV record. It is a coded geographic identifier, typically stored as a standardized country code such as "USA" rather than a free-text country name.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Classify consortia members as U.S. or non-U.S.
- Map geographic distribution of primary consortia locations
- Filter or group awards by country code
Common Mistakes
- Assuming the code is the full country name
- Using the field without validating the code set or lookup table
Query Guidance
Use this field in WHERE and GROUP BY clauses for country-level analysis, and join to a reference table when you need labels or normalization. Compare values against the official code set before aggregating, and handle NULL or nonstandard codes explicitly.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__consortiaInformation__primaryConsortiaLocation__countryCode AS country_code
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__consortiaInformation__primaryConsortiaLocation__countryCode IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionIDV__contractDetail__consortiaInformation__primaryConsortiaLocation__countryCode AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__consortiaInformation__primaryConsortiaLocation__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.