Is Joint Venture Economically Disadvantaged Women Owned Small Business
Boolean flag indicating whether the vendor on the award is identified as a joint venture that is also an economically disadvantaged women-owned small business (EDWOSB). A value such as 1/true means the condition applies; 0/false means it does not. The field sits within vendor socio-economic indicators and describes the vendor entity associated with the transaction.
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 awards involving EDWOSB joint ventures
- Segment vendor awards by socio-economic status
- Support small business and diversity reporting
Common Mistakes
- Assuming 0 means the vendor is definitely not an EDWOSB joint venture rather than simply not flagged
- Using this field as a proxy for the prime contractor’s overall ownership status without checking vendor-level context
Query Guidance
Use a boolean or code comparison such as WHERE field = 1, WHERE field = 'Y', or WHERE field IS TRUE depending on the extract schema. If the source stores coded values, inspect actual distinct values before writing filters, and join or group at the vendor/site level only when that level of analysis is intended.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isJointVentureEconomicallyDisadvantagedWomenOwnedSmallBusiness AS is_joint_venture_economically_disadvantaged_women_owned_small_business
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isJointVentureEconomicallyDisadvantagedWomenOwnedSmallBusiness IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isJointVentureEconomicallyDisadvantagedWomenOwnedSmallBusiness AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__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.