Is Self Certified Small Disadvantaged Business
Boolean flag indicating whether the vendor site is identified in FPDS as a self-certified small disadvantaged business. A value such as 0/1 or equivalent coded flag represents the reported status for that vendor record, not a narrative certification statement.
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 or vendors flagged as self-certified small disadvantaged businesses
- Calculate obligation share to SDB vendors within an IDV or award population
- Segment compliance and diversity reports by supplier certification status
Common Mistakes
- Assuming the flag is the same as third-party certified or formally verified status
- Treating 0, null, and missing as equivalent without checking the source encoding
Query Guidance
Use the field as a boolean predicate after confirming its actual encoded values in the dataset, for example `WHERE content__IDV__vendor__vendorSiteDetails__vendorCertifications__isSelfCertifiedSmallDisadvantagedBusiness = 1` or the dataset's equivalent true code. For aggregate analysis, group on the normalized flag and exclude or separately bucket null/unknown values to avoid overstating certification counts.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorCertifications__isSelfCertifiedSmallDisadvantagedBusiness AS is_self_certified_small_disadvantaged_business
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorCertifications__isSelfCertifiedSmallDisadvantagedBusiness IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__vendor__vendorSiteDetails__vendorCertifications__isSelfCertifiedSmallDisadvantagedBusiness AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorCertifications__isSelfCertifiedSmallDisadvantagedBusiness 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.