Contracting Office Agency Id Name
Human-readable name of the contracting office agency associated with the award purchaser information. It is the descriptive label for the agency identifier in the contracting office agency ID structure, such as a department or agency name rather than the coded ID itself.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Group award records by contracting office agency for spending analysis
- Display agency names in reports and dashboards
- Validate whether a coded agency ID maps to the expected federal organization
Common Mistakes
- Using the name field as a join key instead of the agency ID
- Assuming the label is always standardized across records and time
Query Guidance
Use this field for display, filtering, and aggregation by agency name, but join or deduplicate on the underlying agency ID when available. In SQL, normalize case and trim whitespace if comparing text values, and inspect the paired coded field when the label is abbreviated, variant, or missing.
SQL Examples
Preview values
SELECT
content__award__purchaserInformation__contractingOfficeAgencyID__name AS contracting_office_agency_id_name
FROM fpds.data
WHERE content__award__purchaserInformation__contractingOfficeAgencyID__name IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__purchaserInformation__contractingOfficeAgencyID__name AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__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.