Contracting Office Id
Code identifying the contracting office associated with the IDV record. It is an internal FPDS reference used to designate the office responsible for the instrument rather than a free-text office name.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- grouping IDVs by contracting office
- filtering awards for a specific office code
- joining to office reference or organizational lookup tables
Common Mistakes
- assuming the code is a human-readable office name
- using the field without accounting for code changes or missing reference mappings
Query Guidance
Use equality filters or GROUP BY on this field when analyzing office-level activity, and join to a lookup table if you need readable office names. In SQL, normalize case and handle blanks/nulls explicitly, since coded identifiers may appear inconsistently across feeds.
SQL Examples
Preview values
SELECT
content__IDV__purchaserInformation__contractingOfficeID AS contracting_office_id
FROM fpds.data
WHERE content__IDV__purchaserInformation__contractingOfficeID IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__purchaserInformation__contractingOfficeID AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.