Contracting Office Id
This field contains the contracting office identifier reported on the award record. It is a coded value that identifies the specific office responsible for the contracting action, not a narrative description.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- office-level award counts
- spend by contracting office
- joining to organizational reference tables
Common Mistakes
- trimming leading zeros before joins
- assuming the code alone is a human-readable office name
Query Guidance
Use exact-match filtering and grouping on the full code value, typically as a string. When joining to reference data, keep formatting consistent with the source system and include leading zeros; do not cast to numeric unless you are certain no leading zeros or nonnumeric characters exist.
SQL Examples
Preview values
SELECT
content__award__purchaserInformation__contractingOfficeID AS contracting_office_id
FROM fpds.data
WHERE content__award__purchaserInformation__contractingOfficeID IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__purchaserInformation__contractingOfficeID AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__purchaserInformation__contractingOfficeID 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.