Is Self Certified Small Disadvantaged Business
Indicates whether the vendor represented in the Other Transaction Award record is a self-certified small disadvantaged business. This is a boolean or coded flag stored at the vendor site certification level, and it reflects the vendor's reported status rather than a broader award-level socioeconomic classification.
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 self-certified small disadvantaged businesses
- Calculate vendor diversity or socioeconomic participation rates
- Segment spend or award counts by certification status
Common Mistakes
- Assuming a value of 0 always means the vendor is not small disadvantaged rather than simply not flagged
- Using this field as a substitute for a broader small disadvantaged business determination without checking related certifications
Query Guidance
Use this field in WHERE clauses or CASE expressions after confirming its coding scheme, for example filtering to true/1 values or grouping by the flag and handling nulls explicitly. When joining or aggregating, interpret it at the vendor site certification level and avoid counting duplicate vendor-site rows as separate businesses unless that is the analytic intent.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorCertifications__isSelfCertifiedSmallDisadvantagedBusiness AS is_self_certified_small_disadvantaged_business
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorCertifications__isSelfCertifiedSmallDisadvantagedBusiness IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorCertifications__isSelfCertifiedSmallDisadvantagedBusiness AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__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.