Agency Id Name
Human-readable name of the agency associated with the IDV contract identifier. It is the label portion of the agency ID reference in the procurement record, not the underlying code or identifier itself.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Display the awarding or owning agency name in reports
- Group IDVs by agency for spend or award counts
- Validate the label against the corresponding agency code
Common Mistakes
- Using the name as a stable join key instead of the agency code
- Assuming different text variants always represent different agencies
Query Guidance
Select this field for reporting and labels, but join and filter on the associated agency identifier when possible. In SQL, use it for GROUP BY only when you are intentionally aggregating by the displayed agency name, and consider trimming or normalizing text if you need consistent rollups.
SQL Examples
Preview values
SELECT
content__IDV__contractID__IDVID__agencyID__name AS agency_id_name
FROM fpds.data
WHERE content__IDV__contractID__IDVID__agencyID__name IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__contractID__IDVID__agencyID__name AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__contractID__IDVID__agencyID__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.