Is Self Certified Hub Zone Joint Venture

Boolean flag indicating whether the vendor site is identified as a self-certified HUBZone joint venture in the FPDS award record. A value of 1/true means the record asserts this status; 0/false means it does not, and null may indicate the attribute was not reported.

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__isSelfCertifiedHUBZoneJointVenture
Title
Is Self Certified Hub Zone Joint Venture
FPDS Path
award/vendor/vendorSiteDetails/vendorCertifications/isSelfCertifiedHUBZoneJointVenture
Description
Boolean flag indicating whether the vendor site is identified as a self-certified HUBZone joint venture in the FPDS award record. A value of 1/true means the record asserts this status; 0/false means it does not, and null may indicate the attribute was not reported.
Business Meaning
This field is relevant for assessing HUBZone socioeconomic participation and identifying awards associated with small business joint ventures that claim HUBZone status. Analysts use it to support vendor diversity reviews, set-aside compliance checks, and trend analysis of awards involving HUBZone-related entities.
Example Value
0
Observed Non-Null Count
111,509,025

FPDS Compare

FPDS Query Variable
content__award__vendor__vendorSiteDetails__vendorCertifications__isSelfCertifiedHUBZoneJointVenture
FPDS XML Path
award/vendor/vendorSiteDetails/vendorCertifications/isSelfCertifiedHUBZoneJointVenture
Mapping Type
flattened_fpds_xml_field
Comparison Summary
FPDS Query flattens the original nested FPDS XML path 'award/vendor/vendorSiteDetails/vendorCertifications/isSelfCertifiedHUBZoneJointVenture' into the SQL-ready variable 'content__award__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
  • Measure HUBZone-related participation over time or by agency
  • Cross-tabulate with set-aside, vendor size, or socioeconomic status

Common Mistakes

  • Interpreting 0 as a negative compliance finding rather than a reported false value
  • Using this field alone to determine actual HUBZone eligibility or certification

Query Guidance

Use explicit boolean logic and handle nulls separately, for example WHERE content__award__vendor__vendorSiteDetails__vendorCertifications__isSelfCertifiedHUBZoneJointVenture = 1 for reported true values. If the warehouse stores codes as text, compare against the observed true/false or 1/0 representation in your dataset, and pair this filter with related HUBZone certification fields when needed.

SQL Examples

Preview values

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

Flag distribution

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