Is Sba Certified8 a Program Participant
Boolean or coded flag indicating whether the vendor is identified as an SBA 8(a) program participant in the vendor site certifications associated with the award record. It represents a certification status captured on the FPDS Other Transaction Award path, not a narrative description.
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
- Identify awards to SBA 8(a) program participants
- Filter procurement data for socioeconomic participation analysis
- Join with other vendor certification and small business fields
Common Mistakes
- Assuming the flag proves current eligibility outside the award record
- Treating coded values as free text without checking the domain
Query Guidance
Filter on the field's encoded true value using the values present in your dataset, for example WHERE field = 1 or WHERE field = 'Y'. If the extract stores multiple code forms, inspect distinct values first and normalize them before aggregating.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorCertifications__isSBACertified8AProgramParticipant AS is_sba_certified8_a_program_participant
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorCertifications__isSBACertified8AProgramParticipant IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorCertifications__isSBACertified8AProgramParticipant AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__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.