Country
Human-readable country value for the contracting office associated with the Other Transaction Award record. It identifies the nation tied to the contracting office ID, typically as a standardized code or label 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 records to domestic offices
- Support geographic validation of purchaser information
Common Mistakes
- Confusing contracting office country with vendor or performance country
- Assuming all values are fully standardized without checking for abbreviations or blanks
Query Guidance
Use this field in WHERE clauses or GROUP BY expressions after normalizing case and trimming whitespace. When the value is coded, join or compare against the paired description or reference set if available; otherwise use observed distinct values to define a controlled mapping.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__purchaserInformation__contractingOfficeID__country AS country
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__purchaserInformation__contractingOfficeID__country IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionAward__contractDetail__purchaserInformation__contractingOfficeID__country AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__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.