Is Sba Certified Hub Zone
Boolean flag indicating whether the vendor associated with the IDV is reported as SBA-certified as a HUBZone business in FPDS. A value of 1/true means the certification is present; 0/false means it is not reported or not certified in this field.
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 IDVs involving HUBZone-certified vendors
- Count or calculate the share of awards tied to HUBZone firms
- Compare HUBZone participation across agencies, NAICS codes, or time periods
Common Mistakes
- Using the flag as a current certification registry instead of an FPDS-reported indicator
- Assuming missing or 0-valued records mean the vendor is definitely not HUBZone-certified outside the record
Query Guidance
Use as a boolean filter in SQL, for example `WHERE content__IDV__vendor__vendorSiteDetails__vendorCertifications__isSBACertifiedHUBZone = 1`. When summarizing, count distinct IDs or vendor records as appropriate, and inspect the underlying coded values if the extract stores booleans as text or integers.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorCertifications__isSBACertifiedHUBZone AS is_sba_certified_hub_zone
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorCertifications__isSBACertifiedHUBZone IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__vendor__vendorSiteDetails__vendorCertifications__isSBACertifiedHUBZone AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorCertifications__isSBACertifiedHUBZone 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.