Agency Id Name
Human-readable name of the agency associated with the Other Transaction IDV contract identifier. It is the descriptive label for the agency ID value in the FPDS record, typically showing the awarding or responsible department name rather than a code.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Display agency names in reports and dashboards
- Group Other Transaction IDV records by agency
- Validate the agency label attached to a coded procurement value
Common Mistakes
- Using the name field as a unique identifier for joins
- Assuming abbreviated or variant names are different agencies
Query Guidance
Select this field for readable output and use LOWER(TRIM()) or similar normalization when comparing text values. For analysis, group by the agency code if available and only use this name field as the display label or fallback grouping dimension.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__OtherTransactionIDVID__OtherTransactionIDVContractID__agencyID__name AS agency_id_name
FROM fpds.data
WHERE content__OtherTransactionIDV__OtherTransactionIDVID__OtherTransactionIDVContractID__agencyID__name IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionIDV__OtherTransactionIDVID__OtherTransactionIDVContractID__agencyID__name AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__OtherTransactionIDVID__OtherTransactionIDVContractID__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.