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.

Family: Award
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__award__vendor__vendorSiteDetails__vendorCertifications__isSBACertified8AProgramParticipant
Title
Is Sba Certified8 a Program Participant
FPDS Path
award/vendor/vendorSiteDetails/vendorCertifications/isSBACertified8AProgramParticipant
Description
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.
Business Meaning
This field helps analysts identify awards made to firms participating in SBA's 8(a) Business Development Program, which is relevant for set-aside tracking, small business policy analysis, socioeconomic reporting, and vendor diversity assessments. It supports evaluation of award distribution to firms in designated federal assistance programs and can be used to monitor compliance with small business procurement goals.
Example Value
0
Observed Non-Null Count
111,509,025

FPDS Compare

FPDS Query Variable
content__award__vendor__vendorSiteDetails__vendorCertifications__isSBACertified8AProgramParticipant
FPDS XML Path
award/vendor/vendorSiteDetails/vendorCertifications/isSBACertified8AProgramParticipant
Mapping Type
flattened_fpds_xml_field
Comparison Summary
FPDS Query flattens the original nested FPDS XML path 'award/vendor/vendorSiteDetails/vendorCertifications/isSBACertified8AProgramParticipant' into the SQL-ready variable 'content__award__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 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.