Department Name
Human-readable name of the funding requesting agency associated with the purchaser information in an Other Transaction Award record. It is the text label tied to the underlying agency identifier, not a separate transaction attribute.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Group awards by funding requesting department
- Validate or interpret the associated agency ID
- Create readable reports and filters by agency name
Common Mistakes
- Using the label as a unique key instead of the agency ID
- Assuming different spellings or abbreviations represent different agencies
Query Guidance
Use this field for display, filtering, and high-level grouping, but join and deduplicate on the underlying agency code when possible. In SQL, normalize case and trim whitespace if comparing names, and prefer DISTINCT or GROUP BY on the coded identifier rather than this text label.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__purchaserInformation__fundingRequestingAgencyID__departmentName AS department_name
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__purchaserInformation__fundingRequestingAgencyID__departmentName IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionAward__contractDetail__purchaserInformation__fundingRequestingAgencyID__departmentName AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__purchaserInformation__fundingRequestingAgencyID__departmentName 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.