Is Dot Certified Disadvantaged Business Enterprise
Boolean or coded flag indicating whether the vendor is certified by the U.S. Department of Transportation as a Disadvantaged Business Enterprise (DBE) in the vendor site record. A value such as 1/true typically means the certification applies; 0/false means it does not, though analysts should confirm the dataset’s stored code set. This is a vendor certification attribute, not an award action 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 records for DOT-certified DBE vendors
- Measure supplier diversity participation rates
- Segment procurement awards by certification status
Common Mistakes
- Assuming the flag means the contract itself is DBE-only or DBE-awarded
- Counting the field without checking whether the source uses numeric, text, or null representations
Query Guidance
Use this field as a boolean filter or grouping dimension, for example WHERE isDOTCertifiedDisadvantagedBusinessEnterprise IN (1, '1', 'Y', 'true'). Confirm the actual stored values in your extract before hard-coding logic, and combine with vendor identifiers or award records when analyzing participation at the obligation level.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorCertifications__isDOTCertifiedDisadvantagedBusinessEnterprise AS is_dot_certified_disadvantaged_business_enterprise
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorCertifications__isDOTCertifiedDisadvantagedBusinessEnterprise IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorCertifications__isDOTCertifiedDisadvantagedBusinessEnterprise AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__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.