Department Name
Human-readable name of the procuring department associated with the contracting office agency ID in the IDV record. It is the label version of the coded agency reference, used to identify the department at a glance rather than as a normalized key.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Department-level spend and award counts
- Agency portfolio or pipeline reporting
- Grouping procurement activity by parent department
Common Mistakes
- Using the name as a join key instead of the agency ID
- Assuming the label is fully standardized across all records and time periods
Query Guidance
Use this field for SELECT display, GROUP BY reporting, and filtering by department name when exact text matches are acceptable. For reliable aggregation, pair it with the agency ID field and consider normalizing case/spacing before comparison.
SQL Examples
Preview values
SELECT
content__IDV__purchaserInformation__contractingOfficeAgencyID__departmentName AS department_name
FROM fpds.data
WHERE content__IDV__purchaserInformation__contractingOfficeAgencyID__departmentName IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__purchaserInformation__contractingOfficeAgencyID__departmentName AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__purchaserInformation__contractingOfficeAgencyID__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.