Funding Requesting Agency Id Name
Human-readable name of the funding requesting agency associated with the IDV purchaser information. It is the label counterpart to the coded funding requesting agency identifier, and typically shows the agency name as recorded in FPDS.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Grouping IDVs by requesting agency name
- Validating the human-readable agency label for a coded agency identifier
- Reporting interagency procurement and funding patterns
Common Mistakes
- Using the name alone as a unique identifier
- Assuming identical names always mean identical codes or organizational entities
Query Guidance
Use this field for display, filtering, or grouping on the descriptive agency name, but join or deduplicate on the associated agency ID when accuracy matters. In SQL, normalize casing and trim whitespace if comparing observed text values, and prefer the coded field for joins while selecting this column for presentation.
SQL Examples
Preview values
SELECT
content__IDV__purchaserInformation__fundingRequestingAgencyID__name AS funding_requesting_agency_id_name
FROM fpds.data
WHERE content__IDV__purchaserInformation__fundingRequestingAgencyID__name IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__purchaserInformation__fundingRequestingAgencyID__name AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__purchaserInformation__fundingRequestingAgencyID__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.