Is Sba Certified Hub Zone
Boolean or coded flag indicating whether the vendor's site is identified as SBA-certified HUBZone in the transaction record. The value is stored at the vendor site certification level, so it reflects a specific location/site rather than the award as a whole. Example value 0 typically means the certification condition is not met or not indicated.
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
- Identify awards involving SBA-certified HUBZone vendors
- Segment obligations by socioeconomic certification status
- Support compliance and small-business reporting
Common Mistakes
- Assuming the flag applies to the entire vendor rather than the specific site
- Treating null, 0, and unknown values as equivalent
Query Guidance
Use this field in WHERE clauses to isolate HUBZone-certified records, but first verify the affirmative code in your data extract. If the field is stored as a code flag, compare against the dataset's documented true value and preserve nulls separately with explicit IS NULL checks when measuring missingness or exclusion.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorCertifications__isSBACertifiedHUBZone AS is_sba_certified_hub_zone
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorCertifications__isSBACertifiedHUBZone IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorCertifications__isSBACertifiedHUBZone AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__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.