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.

Family: IDV
Category: Vendor Site Details
Data Type: boolean_or_code_flag
Semantic Type: flag
Mapping: flattened_fpds_xml_field
AI Confidence: high

Variable Overview

FPDS Query Variable
content__IDV__vendor__vendorSiteDetails__vendorCertifications__isSBACertified8AProgramParticipant
Title
Is Sba Certified8 a Program Participant
FPDS Path
IDV/vendor/vendorSiteDetails/vendorCertifications/isSBACertified8AProgramParticipant
Description
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.
Business Meaning
This field supports analysis of awards involving the SBA 8(a) Business Development Program, including set-aside utilization, small business participation, and socioeconomic procurement performance. It is useful for tracking agency spending patterns with 8(a) firms and evaluating program compliance or goal attainment.
Example Value
0
Observed Non-Null Count
5,862,557

FPDS Compare

FPDS Query Variable
content__IDV__vendor__vendorSiteDetails__vendorCertifications__isSBACertified8AProgramParticipant
FPDS XML Path
IDV/vendor/vendorSiteDetails/vendorCertifications/isSBACertified8AProgramParticipant
Mapping Type
flattened_fpds_xml_field
Comparison Summary
FPDS Query flattens the original nested FPDS XML path 'IDV/vendor/vendorSiteDetails/vendorCertifications/isSBACertified8AProgramParticipant' into the SQL-ready variable 'content__IDV__vendor__vendorSiteDetails__vendorCertifications__isSBACertified8AProgramParticipant'.

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.