Is Sba Certified8 a Joint Venture
Boolean or coded flag indicating whether the vendor entity associated with the award is identified as an SBA-certified 8(a) joint venture. It captures the certification status at the vendor site level within the award record, not a narrative description of the vendor. If the source uses coded values, 0 typically represents false/no and other observed values should be validated against the data extract.
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 to 8(a) joint venture participants
- Segment procurement spend by socioeconomic program participation
- Support compliance and reporting analyses for small business programs
Common Mistakes
- Assuming the flag reflects current certification status rather than the recorded award-time status
- Treating 0 as missing instead of a valid negative/false value
Query Guidance
Use explicit value checks based on the observed encoding in your dataset, for example WHERE isSBACertified8AJointVenture = 1 or WHERE isSBACertified8AJointVenture IN ('Y','Yes','True'). Do not rely on NULL checks alone; validate the domain first and, if available, join to related vendor certification fields for confirmation.
SQL Examples
Preview values
SELECT
content__award__vendor__vendorSiteDetails__vendorCertifications__isSBACertified8AJointVenture AS is_sba_certified8_a_joint_venture
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorCertifications__isSBACertified8AJointVenture IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__award__vendor__vendorSiteDetails__vendorCertifications__isSBACertified8AJointVenture AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorCertifications__isSBACertified8AJointVenture 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.