Is Sba Certified8 a Program Participant
Boolean or coded flag indicating whether the vendor site is identified as an SBA 8(a) Business Development Program participant in the record. A value such as 1/true typically means the participant status is present; 0/false means it is not indicated.
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 or vendors associated with SBA 8(a) participants
- Segment obligation totals by socioeconomic certification status
- Support compliance and diversity reporting
Common Mistakes
- Assuming the flag is a current certification validation rather than a reported record attribute
- Filtering without checking the dataset's actual coding convention for boolean values
Query Guidance
Use explicit value checks based on the observed encoding, such as = 1, = 'Y', or = 'true', and verify null handling separately. In SQL, join or filter at the vendor-site level only if you need site-specific certification status, and pair this flag with its description or related certification fields when available.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorCertifications__isSBACertified8AProgramParticipant AS is_sba_certified8_a_program_participant
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorCertifications__isSBACertified8AProgramParticipant IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorCertifications__isSBACertified8AProgramParticipant AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__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.