Contracting Office Agency Id Name
Human-readable name of the contracting office agency associated with the IDV. It is the label version of the underlying agency identifier in the purchaser information section, not the agency code itself.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Agency-level grouping of IDV records
- Display label in dashboards and reports
- Cross-checking coded agency identifiers
Common Mistakes
- Using the name as a unique key instead of the agency code
- Assuming name variants indicate different agencies
Query Guidance
Use this field for grouping, filtering, and presentation when a readable agency label is needed. For reliable joins or de-duplication, join on the agency ID code field and select this field as the display value; if the dataset contains multiple label variants, normalize or map them before aggregation.
SQL Examples
Preview values
SELECT
content__IDV__purchaserInformation__contractingOfficeAgencyID__name AS contracting_office_agency_id_name
FROM fpds.data
WHERE content__IDV__purchaserInformation__contractingOfficeAgencyID__name IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__purchaserInformation__contractingOfficeAgencyID__name AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.