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.
FPDS Compare
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.