Is Joint Venture Women Owned Small Business
Boolean or coded indicator showing whether the vendor site is a joint venture that qualifies as a women-owned small business. It records the presence of that socioeconomic status for the vendor 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
- Filtering awards or vendors for women-owned small business reporting
- Measuring socioeconomic participation across transactions
- Identifying joint venture entities for compliance and market analysis
Common Mistakes
- Assuming the flag alone proves eligibility without checking related ownership or certification fields
- Treating null or default coded values as an affirmative response
Query Guidance
Use this field in WHERE clauses or CASE expressions to segment records by women-owned small business joint venture status, but first verify the dataset's stored code set. For example, test explicitly for the affirmative code used in your extract and exclude nulls or unknown values from counts unless intentionally included.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isJointVentureWomenOwnedSmallBusiness AS is_joint_venture_women_owned_small_business
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isJointVentureWomenOwnedSmallBusiness IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isJointVentureWomenOwnedSmallBusiness AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__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.