Funding Requesting Agency Id
Code or identifier for the agency that is requesting or funding the transaction within the Other Transaction IDV purchaser information. It functions as a reference key, not a descriptive agency name, and may be an abbreviated or system-assigned value.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Filter awards by requesting or funding agency
- Group transactions by funding source for spend analysis
- Join to agency reference data for reporting
Common Mistakes
- Confusing the code with the agency name
- Using the raw value without validating against a reference table or companion description
Query Guidance
Use this field in WHERE, GROUP BY, or JOIN clauses as a coded key. In SQL, compare it to standardized agency codes or join it to a reference dimension; avoid free-text matching unless you have confirmed the value format.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__purchaserInformation__fundingRequestingAgencyID AS funding_requesting_agency_id
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__purchaserInformation__fundingRequestingAgencyID IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionIDV__contractDetail__purchaserInformation__fundingRequestingAgencyID AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__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.