Contracting Office Id
Identifier for the contracting office associated with the Other Transaction Award purchaser information. It is a coded office key, not a free-text name, and identifies the specific contracting office that issued or managed the transaction.
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
- Filter transactions for a specific office code
- Join to office lookup tables for descriptive reporting
Common Mistakes
- Assuming the field contains the office name instead of a code
- Aggregating across offices without normalizing codes or handling missing values
Query Guidance
Use this field in WHERE, GROUP BY, and JOIN clauses as an office key. If you need a readable label, join to a contracting office reference table; when comparing across periods, verify the code remains consistent and account for null or placeholder values.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__purchaserInformation__contractingOfficeID AS contracting_office_id
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__purchaserInformation__contractingOfficeID IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionAward__contractDetail__purchaserInformation__contractingOfficeID AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__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.