Is Joint Venture Women Owned Small Business
Boolean or coded indicator showing whether the vendor on the award is a women-owned small business organized as a joint venture. It flags the socioeconomic status recorded in the vendor site details for that 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 to women-owned small business joint ventures
- Measure socioeconomic participation in procurement
- Support compliance and reporting for vendor diversity programs
Common Mistakes
- Assuming a false or null value means the vendor is not a women-owned small business joint venture
- Using the field without checking the actual coded values present in the extract
Query Guidance
Use this field as a boolean/coded filter in SQL, for example WHERE isJointVentureWomenOwnedSmallBusiness = 1 or = 'Y' depending on the source encoding. When aggregating, group by the normalized indicator and exclude or separately track nulls to avoid mixing unreported values with negative responses.
SQL Examples
Preview values
SELECT
content__award__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isJointVentureWomenOwnedSmallBusiness AS is_joint_venture_women_owned_small_business
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isJointVentureWomenOwnedSmallBusiness IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__award__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isJointVentureWomenOwnedSmallBusiness AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isJointVentureWomenOwnedSmallBusiness 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.