Funding Requesting Agency Id Name
Human-readable name of the funding requesting agency associated with the Other Transaction Award record. This is the descriptive label for the agency identifier in the purchaser information section, such as "DEPT OF THE ARMY".
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Agency-level rollups of OT award activity by funding source
- Filtering records to a specific requesting agency using the readable agency name
- Validating or interpreting the coded funding requesting agency identifier
Common Mistakes
- Using the name as a stable join key instead of the underlying agency code
- Assuming the field always matches the awarding agency or contracting office
Query Guidance
Use this field for display, grouping, or text-based filtering, but join and deduplicate on the paired agency ID when possible. In SQL, normalize case and trim whitespace for reporting, and prefer the coded identifier for exact matching while retaining this name for readable output.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__purchaserInformation__fundingRequestingAgencyID__name AS funding_requesting_agency_id_name
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__purchaserInformation__fundingRequestingAgencyID__name IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionAward__contractDetail__purchaserInformation__fundingRequestingAgencyID__name AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__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.