Is Sba Certified8 a Joint Venture

Boolean or coded flag indicating whether the vendor site is identified as an SBA-certified 8(a) joint venture. It is a vendor certification attribute stored at the vendor site level within the Other Transaction IDV record. The value typically functions as a yes/no indicator, with 0 commonly meaning false or not certified.

Family: Other Transaction 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__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorCertifications__isSBACertified8AJointVenture
Title
Is Sba Certified8 a Joint Venture
FPDS Path
OtherTransactionIDV/contractDetail/vendor/vendorSiteDetails/vendorCertifications/isSBACertified8AJointVenture
Description
Boolean or coded flag indicating whether the vendor site is identified as an SBA-certified 8(a) joint venture. It is a vendor certification attribute stored at the vendor site level within the Other Transaction IDV record. The value typically functions as a yes/no indicator, with 0 commonly meaning false or not certified.
Business Meaning
This field supports analysis of awards and vendor participation involving SBA 8(a) joint ventures, which can be relevant for set-aside compliance, program participation monitoring, and socio-economic segmentation. It helps analysts isolate transactions associated with small disadvantaged business policy objectives and assess how often this certification appears in the vendor base.
Example Value
0
Observed Non-Null Count
13,417

FPDS Compare

FPDS Query Variable
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorCertifications__isSBACertified8AJointVenture
FPDS XML Path
OtherTransactionIDV/contractDetail/vendor/vendorSiteDetails/vendorCertifications/isSBACertified8AJointVenture
Mapping Type
flattened_fpds_xml_field
Comparison Summary
FPDS Query flattens the original nested FPDS XML path 'OtherTransactionIDV/contractDetail/vendor/vendorSiteDetails/vendorCertifications/isSBACertified8AJointVenture' into the SQL-ready variable 'content__OtherTransactionIDV__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
  • Measure vendor participation in socio-economic programs
  • Segment vendor site records for compliance or policy analysis

Common Mistakes

  • Assuming 0 always means missing instead of false/not certified
  • Using the field as a current certification status without validating the reporting period

Query Guidance

Use explicit boolean or code filtering against the stored value, for example WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorCertifications__isSBACertified8AJointVenture = 1 or = 'Y' depending on the extract. If the column is sparsely populated or coded, first inspect distinct values before writing production SQL.

SQL Examples

Preview values

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

Flag distribution

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