Is Self Certified Hub Zone Joint Venture

Boolean flag indicating whether the vendor site is reported as a self-certified HUBZone joint venture. It records the presence of this specific certification condition at the vendor site level within an Other Transaction IDV record.

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__isSelfCertifiedHUBZoneJointVenture
Title
Is Self Certified Hub Zone Joint Venture
FPDS Path
OtherTransactionIDV/contractDetail/vendor/vendorSiteDetails/vendorCertifications/isSelfCertifiedHUBZoneJointVenture
Description
Boolean flag indicating whether the vendor site is reported as a self-certified HUBZone joint venture. It records the presence of this specific certification condition at the vendor site level within an Other Transaction IDV record.
Business Meaning
This field supports analysis of HUBZone-related eligibility, socioeconomic participation, and vendor certification patterns in procurement and other transaction awards. It is useful for compliance screening, vendor segmentation, and identifying awards associated with self-certified joint venture arrangements.
Example Value
0
Observed Non-Null Count
13,417

FPDS Compare

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

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 self-certified HUBZone joint ventures
  • Segment vendor certifications for socioeconomic analysis
  • Count or trend reported HUBZone joint venture participation

Common Mistakes

  • Assuming the flag confirms current legal eligibility rather than reported status
  • Treating null, 0, and missing values as equivalent without checking source encoding

Query Guidance

Use this field as a boolean predicate in WHERE clauses after confirming the encoding in your extract, for example filtering to true/1 for reported self-certified HUBZone joint ventures. When aggregating, group by the normalized flag value and avoid joining it to award-level measures without accounting for possible multiple vendor site certification rows per award.

SQL Examples

Preview values

SELECT
    content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorCertifications__isSelfCertifiedHUBZoneJointVenture AS is_self_certified_hub_zone_joint_venture
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorCertifications__isSelfCertifiedHUBZoneJointVenture IS NOT NULL
LIMIT 25

Flag distribution

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