Funding Requesting Office Id Name
Human-readable name of the office that submitted or requested funding for the award. This is the descriptive label paired with the underlying funding/requesting office identifier in the FPDS record.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- grouping awards by requesting office
- cross-walking to the underlying office identifier
- spotting office-level funding and acquisition patterns
Common Mistakes
- using the name alone as a unique key
- assuming abbreviations map cleanly across all records
Query Guidance
Use this field for display, filtering, and human-readable reporting, but aggregate on the paired office ID when available. In SQL, standardize text cautiously and avoid exact-match logic without checking observed variants such as abbreviations, punctuation, or casing.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__purchaserInformation__fundingRequestingOfficeID__name AS funding_requesting_office_id_name
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__purchaserInformation__fundingRequestingOfficeID__name IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionAward__contractDetail__purchaserInformation__fundingRequestingOfficeID__name AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__purchaserInformation__fundingRequestingOfficeID__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.