Is Sba Certified8 a Joint Venture
Boolean flag indicating whether the vendor identified on the award record is an SBA-certified 8(a) joint venture. It captures the vendor certification status stored in the vendor site certification data for the award.
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 SBA-certified 8(a) joint ventures
- Count or trend procurement activity tied to 8(a) participation
- Support compliance and socio-economic category reporting
Common Mistakes
- Assuming the flag applies to the prime vendor generally rather than the specific award record
- Treating 0 as missing instead of a negative/no indicator
Query Guidance
Use it as a boolean filter in WHERE clauses, e.g., `= 1` for included records and `= 0` for excluded records, after confirming the stored coding in your extract. If the column is stored as text or nullable, normalize values first and consider null separately from false.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorCertifications__isSBACertified8AJointVenture AS is_sba_certified8_a_joint_venture
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorCertifications__isSBACertified8AJointVenture IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorCertifications__isSBACertified8AJointVenture AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__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.