Is Sba Certified8 a Program Participant
Boolean or coded flag indicating whether the vendor associated with the award is identified in FPDS as an SBA 8(a) program participant. It is a vendor-certification attribute stored under vendor site details and should be interpreted as a participation indicator for the awarded vendor record. Because this is a flag, its practical meaning depends on the observed stored values and any paired description fields in the record.
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 8(a) participants for socioeconomic analyses
- Measure obligation share to 8(a) vendors by agency or fiscal year
- Join with other vendor certification flags to profile vendor eligibility categories
Common Mistakes
- Assuming the flag means the award itself was set aside for 8(a) purposes
- Treating coded values as universally consistent without checking the actual stored value set
Query Guidance
Use this field as a filter or grouping variable after confirming the encoded values in your source table. In SQL, test for the value(s) that represent true/yes, and pair it with vendor and award identifiers for analysis; for example, WHERE isSBACertified8AProgramParticipant = 1 or the equivalent true value in your dataset.
SQL Examples
Preview values
SELECT
content__award__vendor__vendorSiteDetails__vendorCertifications__isSBACertified8AProgramParticipant AS is_sba_certified8_a_program_participant
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorCertifications__isSBACertified8AProgramParticipant IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__award__vendor__vendorSiteDetails__vendorCertifications__isSBACertified8AProgramParticipant AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorCertifications__isSBACertified8AProgramParticipant 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.