Is Joint Venture Economically Disadvantaged Women Owned Small Business
Boolean or coded flag indicating whether the vendor on the IDV is identified as a joint venture that is economically disadvantaged women-owned small business. It captures the socioeconomic status reported for the vendor site record, not a narrative description.
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 IDVs awarded to economically disadvantaged women-owned small business joint ventures
- Count obligations or awards associated with this socioeconomic category
- Cross-tabulate against agency, NAICS, set-aside, or vehicle type
Common Mistakes
- Assuming missing or zero values always mean the vendor is not eligible rather than not reported
- Using the flag without checking related socioeconomic fields or vendor site records for consistency
Query Guidance
Use equality filters on the stored code, for example WHERE content__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isJointVentureEconomicallyDisadvantagedWomenOwnedSmallBusiness IN ('1','Y',1) after confirming the dataset's encoding. When aggregating, coalesce or normalize the field first, and do not infer joint venture status from other women-owned flags unless the record explicitly supports it.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isJointVentureEconomicallyDisadvantagedWomenOwnedSmallBusiness AS is_joint_venture_economically_disadvantaged_women_owned_small_business
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isJointVentureEconomicallyDisadvantagedWomenOwnedSmallBusiness IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isJointVentureEconomicallyDisadvantagedWomenOwnedSmallBusiness AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.