Funding Requesting Agency Id Name
Human-readable name of the agency that is requesting or funding the Other Transaction IDV action. It is the descriptive label paired with the underlying Funding Requesting Agency ID, not the code itself.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Group transactions by funding or requesting agency for reporting
- Label the agency associated with a coded procurement field
- Validate agency-level rollups and cross-agency analyses
Common Mistakes
- Using the name as a unique key instead of the agency ID
- Confusing the funding/requesting agency with the contracting agency
Query Guidance
Use this field as a descriptive select or GROUP BY display value, but join and deduplicate on the paired agency ID when available. In SQL, aggregate by the code field and select this name with MAX(), ANY_VALUE(), or a reference-table join to avoid splitting records by minor text variations.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__purchaserInformation__fundingRequestingAgencyID__name AS funding_requesting_agency_id_name
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__purchaserInformation__fundingRequestingAgencyID__name IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionIDV__contractDetail__purchaserInformation__fundingRequestingAgencyID__name AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__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.