Is Joint Venture Economically Disadvantaged Women Owned Small Business
Boolean indicator that the vendor on the Other Transaction IDV record is a joint venture qualifying as an economically disadvantaged women-owned small business. It captures the vendor site’s socio-economic status at the level stored in FPDS for this transaction record.
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
- Count or filter awards involving economically disadvantaged women-owned joint ventures
- Segment vendor participation by socio-economic status
- Support compliance and diversity reporting for IDV activity
Common Mistakes
- Assuming a 0 value means the vendor is not eligible rather than only not flagged in the record
- Using this field without checking for nulls or other coded representations
Query Guidance
Use this field in WHERE clauses to isolate affirmative records and in CASE expressions for counts or percentages. Example pattern: WHERE field = 1; or WHERE field IN ('Y','1') depending on the observed coding, with a separate IS NULL check for missing values.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isJointVentureEconomicallyDisadvantagedWomenOwnedSmallBusiness AS is_joint_venture_economically_disadvantaged_women_owned_small_business
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isJointVentureEconomicallyDisadvantagedWomenOwnedSmallBusiness IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isJointVentureEconomicallyDisadvantagedWomenOwnedSmallBusiness AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__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.