Funding Requesting Agency Id
Identifier for the agency that requested or is associated with the funding for the IDV action. It is a coded value, not a free-text name, and may represent an agency entity or organizational key used in FPDS records.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Break out IDV obligations or counts by funding-requesting agency
- Join to agency reference data for rollups and labels
- Identify cross-agency funding and acquisition patterns
Common Mistakes
- Assuming the value is the awarding agency rather than the requesting funding agency
- Grouping without decoding the code, which can merge distinct agencies or components
Query Guidance
Filter or group on the code exactly as stored, and join to a reference/lookup table for the agency name or description before presenting results. If the field contains short numeric-like values, preserve leading zeros and avoid casting unless you have verified the data type and format.
SQL Examples
Preview values
SELECT
content__IDV__purchaserInformation__fundingRequestingAgencyID AS funding_requesting_agency_id
FROM fpds.data
WHERE content__IDV__purchaserInformation__fundingRequestingAgencyID IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__purchaserInformation__fundingRequestingAgencyID AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.