Division Number or Office Code
Code or label for the vendor division, branch, or office associated with the award record. It identifies the specific organizational site within the contractor that is linked to the contracting action; values may be abbreviated, site-specific, or otherwise non-standardized across vendors.
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
- Linking awards to a specific contractor office or site
- Disaggregating performance or award volume by vendor location
- Filtering records for a known division, branch, or office
Common Mistakes
- Assuming the field is always a standardized office name
- Grouping it as if it were the vendor legal entity identifier
Query Guidance
Use exact-match or normalized-text filters only after reviewing observed values in the dataset. When joining or grouping, prefer this field as a site-level attribute and combine it with vendor identifiers; for SQL, compare trimmed and case-normalized values, and consider DISTINCT to inspect variations before aggregation.
SQL Examples
Preview values
SELECT
content__award__vendor__vendorSiteDetails__divisionNumberOrOfficeCode AS division_number_or_office_code
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__divisionNumberOrOfficeCode IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__vendor__vendorSiteDetails__divisionNumberOrOfficeCode AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__divisionNumberOrOfficeCode 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.