Division Number or Office Code
A code or label that identifies the vendor’s division, office, or similar organizational unit as recorded on the IDV vendor site details record. It is an organizational identifier rather than a procurement action number or contract 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
- Grouping IDVs by vendor office or division
- Matching awards to vendor site records for entity resolution
- Filtering awards tied to a specific branch, region, or operating unit
Common Mistakes
- Assuming it is the vendor's legal name or CAGE/UEI
- Treating abbreviated values as standardized across all vendors without validation
Query Guidance
Use it as a categorical filter or grouping key, and normalize casing/spacing if you need exact matching across records. In SQL, prefer `TRIM()` and `UPPER()` for comparisons, and inspect distinct values before building joins because the field may contain free-text abbreviations or office labels rather than a controlled code set.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__divisionNumberOrOfficeCode AS division_number_or_office_code
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__divisionNumberOrOfficeCode IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__vendor__vendorSiteDetails__divisionNumberOrOfficeCode AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.