Division Name
Human-readable name of the vendor division associated with the IDV award site details. It identifies the division-level label stored for the vendor record rather than a procurement code or numeric identifier.
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
- Display the vendor division name in award or vendor extracts
- Group records by division-level vendor identity
- Support vendor normalization and entity resolution
Common Mistakes
- Using it as a unique vendor identifier or join key
- Assuming it always matches the legal business name or parent company name
Query Guidance
Select and group by this field only when you need a division label for reporting or deduplication support. In SQL, pair it with vendor name, DUNS/UEI-related fields, or other vendor identifiers for joins and validation, and use NULL/blank checks because the field may be missing or inconsistent across records.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__divisionName AS division_name
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__divisionName IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__vendor__vendorSiteDetails__divisionName AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.