Country
The country of the contracting office identified in the award record. It indicates the geographic location associated with the purchasing office, typically as an ISO-like country code or short text value such as "USA".
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Group awards by contracting office country
- Filter to U.S.-based contracting offices
- Validate office location consistency across award records
Common Mistakes
- Confusing contracting office country with place of performance country
- Assuming the field contains full country names rather than abbreviated codes
Query Guidance
Use this field in WHERE clauses for country filters and in GROUP BY for geographic rollups. Standardize values with CASE or reference data if multiple encodings appear, and join to lookup tables only if the source system provides an authoritative code set.
SQL Examples
Preview values
SELECT
content__award__purchaserInformation__contractingOfficeID__country AS country
FROM fpds.data
WHERE content__award__purchaserInformation__contractingOfficeID__country IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__purchaserInformation__contractingOfficeID__country AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__purchaserInformation__contractingOfficeID__country 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.