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.

Family: Other Transaction 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__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorCertifications__isSBACertified8AProgramParticipant
Title
Is Sba Certified8 a Program Participant
FPDS Path
OtherTransactionAward/contractDetail/vendor/vendorSiteDetails/vendorCertifications/isSBACertified8AProgramParticipant
Description
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.
Business Meaning
This field matters because 8(a) participation is a key socioeconomic status used in small business policy, set-aside analysis, vendor segmentation, and compliance reporting. Analysts use it to measure participation of disadvantaged businesses in federal awards and to evaluate whether awards align with small business and socioeconomic procurement objectives.
Example Value
0
Observed Non-Null Count
38,894

FPDS Compare

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

  • 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.