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.

Family: Award
Category: Vendor Site Details
Data Type: boolean_or_code_flag
Semantic Type: flag
Mapping: flattened_fpds_xml_field
AI Confidence: high

Variable Overview

FPDS Query Variable
content__award__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isJointVentureEconomicallyDisadvantagedWomenOwnedSmallBusiness
Title
Is Joint Venture Economically Disadvantaged Women Owned Small Business
FPDS Path
award/vendor/vendorSiteDetails/vendorSocioEconomicIndicators/isJointVentureEconomicallyDisadvantagedWomenOwnedSmallBusiness
Description
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.
Business Meaning
This field helps analysts identify awards associated with a specific set-aside-eligible ownership status, which is relevant for socioeconomic participation analysis, diversity tracking, and compliance reporting. It supports measurement of awards flowing to joint ventures that combine women-owned and economically disadvantaged small business qualifications.
Example Value
0
Observed Non-Null Count
111,509,025

FPDS Compare

FPDS Query Variable
content__award__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isJointVentureEconomicallyDisadvantagedWomenOwnedSmallBusiness
FPDS XML Path
award/vendor/vendorSiteDetails/vendorSocioEconomicIndicators/isJointVentureEconomicallyDisadvantagedWomenOwnedSmallBusiness
Mapping Type
flattened_fpds_xml_field
Comparison Summary
FPDS Query flattens the original nested FPDS XML path 'award/vendor/vendorSiteDetails/vendorSocioEconomicIndicators/isJointVentureEconomicallyDisadvantagedWomenOwnedSmallBusiness' into the SQL-ready variable 'content__award__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isJointVentureEconomicallyDisadvantagedWomenOwnedSmallBusiness'.

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.