Is Sba Certified Small Disadvantaged Business
Boolean or coded indicator showing whether the vendor on the award record is identified in FPDS as an SBA-certified Small Disadvantaged Business (SDB). It is a vendor site certification attribute at the award level, not a narrative description of the firm.
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 to SBA-certified small disadvantaged business vendors
- Calculate award dollars or counts to SDB vendors
- Segment vendor participation by socioeconomic category
Common Mistakes
- Interpreting the field as a statement about the contract set-aside instead of the vendor's certification status
- Assuming null or blank values mean the vendor is not certified
Query Guidance
Use explicit value checks against the observed coding in your dataset, for example WHERE field IN (1,'1','Y','true') for positive cases. If you need a reliable certification analysis, join or group by this flag alongside other vendor certification fields and handle nulls separately from false values.
SQL Examples
Preview values
SELECT
content__award__vendor__vendorSiteDetails__vendorCertifications__isSBACertifiedSmallDisadvantagedBusiness AS is_sba_certified_small_disadvantaged_business
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorCertifications__isSBACertifiedSmallDisadvantagedBusiness IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__award__vendor__vendorSiteDetails__vendorCertifications__isSBACertifiedSmallDisadvantagedBusiness AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorCertifications__isSBACertifiedSmallDisadvantagedBusiness 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.