Is Sba Certified8 a Joint Venture

Boolean flag indicating whether the vendor identified on the award record is an SBA-certified 8(a) joint venture. It captures the vendor certification status stored in the vendor site certification data for the award.

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__isSBACertified8AJointVenture
Title
Is Sba Certified8 a Joint Venture
FPDS Path
OtherTransactionAward/contractDetail/vendor/vendorSiteDetails/vendorCertifications/isSBACertified8AJointVenture
Description
Boolean flag indicating whether the vendor identified on the award record is an SBA-certified 8(a) joint venture. It captures the vendor certification status stored in the vendor site certification data for the award.
Business Meaning
This field is useful for identifying awards involving 8(a) joint ventures, which are relevant to small business participation, set-aside oversight, and socio-economic program analysis. It supports compliance monitoring and segmentation of awards tied to SBA certification status.
Example Value
0
Observed Non-Null Count
38,894

FPDS Compare

FPDS Query Variable
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorCertifications__isSBACertified8AJointVenture
FPDS XML Path
OtherTransactionAward/contractDetail/vendor/vendorSiteDetails/vendorCertifications/isSBACertified8AJointVenture
Mapping Type
flattened_fpds_xml_field
Comparison Summary
FPDS Query flattens the original nested FPDS XML path 'OtherTransactionAward/contractDetail/vendor/vendorSiteDetails/vendorCertifications/isSBACertified8AJointVenture' into the SQL-ready variable 'content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorCertifications__isSBACertified8AJointVenture'.

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 involving SBA-certified 8(a) joint ventures
  • Count or trend procurement activity tied to 8(a) participation
  • Support compliance and socio-economic category reporting

Common Mistakes

  • Assuming the flag applies to the prime vendor generally rather than the specific award record
  • Treating 0 as missing instead of a negative/no indicator

Query Guidance

Use it as a boolean filter in WHERE clauses, e.g., `= 1` for included records and `= 0` for excluded records, after confirming the stored coding in your extract. If the column is stored as text or nullable, normalize values first and consider null separately from false.

SQL Examples

Preview values

SELECT
    content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorCertifications__isSBACertified8AJointVenture AS is_sba_certified8_a_joint_venture
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorCertifications__isSBACertified8AJointVenture IS NOT NULL
LIMIT 25

Flag distribution

SELECT
    content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorCertifications__isSBACertified8AJointVenture AS flag_value,
    count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorCertifications__isSBACertified8AJointVenture 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.