Is Dot Certified Disadvantaged Business Enterprise
Boolean flag indicating whether the vendor site is recorded as a DOT-certified Disadvantaged Business Enterprise (DBE) in the award record. A value of 1/true means the certification condition is present; 0/false means it is not, with null or missing values indicating no recorded status.
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
- Filter awards involving DOT-certified DBEs
- Measure DBE participation rates by agency, program, or geography
- Segment obligation totals by vendor certification status
Common Mistakes
- Assuming the flag proves active certification at the time of analysis rather than at reporting
- Counting nulls as false without checking whether the record is incomplete or unreported
Query Guidance
Use explicit boolean logic in SQL, such as WHERE field = 1 or WHERE field = TRUE depending on the dataset encoding, and handle null separately with IS NULL if completeness matters. When calculating shares, exclude or separately classify nulls so missing data does not get treated as non-certification.
SQL Examples
Preview values
SELECT
content__award__vendor__vendorSiteDetails__vendorCertifications__isDOTCertifiedDisadvantagedBusinessEnterprise AS is_dot_certified_disadvantaged_business_enterprise
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorCertifications__isDOTCertifiedDisadvantagedBusinessEnterprise IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__award__vendor__vendorSiteDetails__vendorCertifications__isDOTCertifiedDisadvantagedBusinessEnterprise AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorCertifications__isDOTCertifiedDisadvantagedBusinessEnterprise IS NOT NULL
GROUP BY flag_value
ORDER BY record_count DESC
Each dictionary item includes SQL-ready examples generated alongside the variable metadata, allowing immediate use in FPDS Query for filtering, aggregation, and analysis.