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