Is Sba Certified8 a Joint Venture

Boolean or coded flag indicating whether the vendor entity associated with the award is identified as an SBA-certified 8(a) joint venture. It captures the certification status at the vendor site level within the award record, not a narrative description of the vendor. If the source uses coded values, 0 typically represents false/no and other observed values should be validated against the data extract.

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__isSBACertified8AJointVenture
Title
Is Sba Certified8 a Joint Venture
FPDS Path
award/vendor/vendorSiteDetails/vendorCertifications/isSBACertified8AJointVenture
Description
Boolean or coded flag indicating whether the vendor entity associated with the award is identified as an SBA-certified 8(a) joint venture. It captures the certification status at the vendor site level within the award record, not a narrative description of the vendor. If the source uses coded values, 0 typically represents false/no and other observed values should be validated against the data extract.
Business Meaning
This field helps analysts identify awards involving firms that participate in the SBA 8(a) program through a joint venture structure. It is useful for compliance reviews, set-aside and socioeconomic performance analysis, and measuring participation of small-disadvantaged business arrangements in federal contracting.
Example Value
0
Observed Non-Null Count
111,509,025

FPDS Compare

FPDS Query Variable
content__award__vendor__vendorSiteDetails__vendorCertifications__isSBACertified8AJointVenture
FPDS XML Path
award/vendor/vendorSiteDetails/vendorCertifications/isSBACertified8AJointVenture
Mapping Type
flattened_fpds_xml_field
Comparison Summary
FPDS Query flattens the original nested FPDS XML path 'award/vendor/vendorSiteDetails/vendorCertifications/isSBACertified8AJointVenture' into the SQL-ready variable 'content__award__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 to 8(a) joint venture participants
  • Segment procurement spend by socioeconomic program participation
  • Support compliance and reporting analyses for small business programs

Common Mistakes

  • Assuming the flag reflects current certification status rather than the recorded award-time status
  • Treating 0 as missing instead of a valid negative/false value

Query Guidance

Use explicit value checks based on the observed encoding in your dataset, for example WHERE isSBACertified8AJointVenture = 1 or WHERE isSBACertified8AJointVenture IN ('Y','Yes','True'). Do not rely on NULL checks alone; validate the domain first and, if available, join to related vendor certification fields for confirmation.

SQL Examples

Preview values

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

Flag distribution

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