Contracting Office Agency Id Name
Human-readable name for the contracting office agency recorded in an Other Transaction IDV purchaser record. It is the label paired to the underlying agency identifier, such as a department or component name like "DEPT OF THE ARMY".
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Agency-level reporting and rollups
- Validating purchaser organization names against agency IDs
- Filtering transactions by contracting office organization
Common Mistakes
- Using the label as a join key instead of the agency ID
- Assuming all name variants represent distinct agencies
Query Guidance
Use this field for display, grouping, or filtering by agency name, but join and de-duplicate on the associated contracting office agency ID when available. In SQL, normalize text for case and spacing if comparing names, and prefer code-based fields for relational logic.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__purchaserInformation__contractingOfficeAgencyID__name AS contracting_office_agency_id_name
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__purchaserInformation__contractingOfficeAgencyID__name IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionIDV__contractDetail__purchaserInformation__contractingOfficeAgencyID__name AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__purchaserInformation__contractingOfficeAgencyID__name 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.