Contracting Office Agency Id
Code identifying the federal agency associated with the contracting office that issued or managed the Other Transaction IDV purchaser information. It is a coded identifier, not a descriptive agency name, and is used to point to the agency responsible for the contracting office.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- grouping Other Transaction IDVs by contracting agency
- joining to agency reference tables for descriptive reporting
- filtering awards by issuing organization or agency portfolio
Common Mistakes
- assuming the code is a human-readable agency name
- aggregating across codes without resolving agency hierarchy or reference mappings
Query Guidance
Use this field as a join key or filter predicate, for example WHERE contractingOfficeAgencyID = '2100' or JOIN to an agency dimension table on the code. Preserve the original code in grouped results and resolve the description only after validating the reference mapping.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__purchaserInformation__contractingOfficeAgencyID AS contracting_office_agency_id
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionIDV__contractDetail__purchaserInformation__contractingOfficeAgencyID AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__purchaserInformation__contractingOfficeAgencyID 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.