Division Name
Human-readable name of the vendor's internal division associated with the award record. It identifies the specific business unit, subdivision, or operating division within the vendor organization involved in the transaction.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
- Contractor profiling and competitor analysis
Common Usage
- Segment awards by vendor division or internal business unit
- Identify concentration of spending within a contractor's divisions
- Support vendor matching and organizational disambiguation
Common Mistakes
- Assuming the division name is the same as the legal entity or prime contractor name
- Using it as a coded field instead of a free-text label
Query Guidance
Use it as a text field for grouping, filtering, or distinct counts, but normalize case and trim whitespace before analysis. For SQL, aggregate with vendor identifiers when possible, and avoid relying on exact string matches unless you have cleaned observed value variants.
SQL Examples
Preview values
SELECT
content__award__vendor__vendorSiteDetails__divisionName AS division_name
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__divisionName IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__vendor__vendorSiteDetails__divisionName AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__divisionName 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.