Is Joint Venture Economically Disadvantaged Women Owned Small Business
Boolean or coded flag indicating whether the vendor on the award is reported as a joint venture that is economically disadvantaged and women-owned small business. It is a vendor socioeconomic indicator stored under award vendor site details.
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 for socioeconomic participation analysis
- Count or sum obligations tied to joint venture WOSB/EDWOSB activity
- Segment vendors by ownership and joint venture status
Common Mistakes
- Assuming 0 always means definitively no rather than not reported in some extracts
- Using this field alone to infer full eligibility without checking other socioeconomic indicators
Query Guidance
Use this field in WHERE clauses for binary filtering and in CASE expressions for rollups, e.g. WHERE field = 1 or field IS TRUE. When building counts, distinguish false from null if the extract preserves missingness, and pair with related vendor socioeconomic indicator fields for complete classification.
SQL Examples
Preview values
SELECT
content__award__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isJointVentureEconomicallyDisadvantagedWomenOwnedSmallBusiness AS is_joint_venture_economically_disadvantaged_women_owned_small_business
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isJointVentureEconomicallyDisadvantagedWomenOwnedSmallBusiness IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__award__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isJointVentureEconomicallyDisadvantagedWomenOwnedSmallBusiness AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isJointVentureEconomicallyDisadvantagedWomenOwnedSmallBusiness 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.