Funding Requesting Office Id Name
Human-readable name of the office that requested the funding associated with the award. It is the label version of the funding requesting office identifier in the FPDS award record, used to describe which office originated or requested the funds.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Identify the requesting office behind an award
- Group obligations by funding-originating office
- Validate office labels against office ID codes
Common Mistakes
- Using the name field as a unique identifier
- Assuming the label is standardized across agencies or reporting periods
Query Guidance
Use this field for display, filtering by known office names, or sanity checks. For analysis, prefer grouping and joins on the corresponding office ID/code field, and keep this column as a label in SELECT output rather than a primary key in SQL.
SQL Examples
Preview values
SELECT
content__award__purchaserInformation__fundingRequestingOfficeID__name AS funding_requesting_office_id_name
FROM fpds.data
WHERE content__award__purchaserInformation__fundingRequestingOfficeID__name IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__purchaserInformation__fundingRequestingOfficeID__name AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__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.