Is Sba Certified8 a Program Participant
Boolean flag indicating whether the vendor has been identified in the FPDS record as an SBA-certified 8(a) program participant. A value such as 1/true means the vendor is marked as certified; 0/false means the record does not indicate that 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 awards to 8(a) participants for socioeconomic spending analysis
- Measure agency use of the SBA 8(a) program over time
- Segment vendors or awards by certification status in dashboards
Common Mistakes
- Treating a missing or 0 value as proof the vendor is not an 8(a) firm in all contexts
- Joining on the flag without normalizing coded boolean values across extracts
Query Guidance
In SQL, filter on the normalized true/positive value only after checking the dataset’s encoding, for example WHERE isSBACertified8AProgramParticipant IN ('1','Y',1,TRUE). Use this as a classification filter, not as a monetary measure, and combine it with award dates or agency identifiers when calculating trends.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorCertifications__isSBACertified8AProgramParticipant AS is_sba_certified8_a_program_participant
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorCertifications__isSBACertified8AProgramParticipant IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__vendor__vendorSiteDetails__vendorCertifications__isSBACertified8AProgramParticipant AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.