Funding Requesting Agency Id
Identifier for the agency that is requesting or funding the requirement associated with an Other Transaction award. It is a coded value, not a narrative name, and should be treated as a reference key to an agency entity or reporting structure.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Group awards by requesting or funding agency
- Join to agency reference or crosswalk tables
- Filter transactions involving a specific originating agency
Common Mistakes
- Treating the code as the agency name
- Confusing the funding/requesting agency with the awarding agency
Query Guidance
Use this field as a join key or filter predicate, for example in WHERE clauses and GROUP BY operations. When presenting results, map the code to an agency label through a lookup table so output is interpretable and consistent.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__purchaserInformation__fundingRequestingAgencyID AS funding_requesting_agency_id
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__purchaserInformation__fundingRequestingAgencyID IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionAward__contractDetail__purchaserInformation__fundingRequestingAgencyID AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__purchaserInformation__fundingRequestingAgencyID 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.