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.

Family: IDV
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__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isJointVentureEconomicallyDisadvantagedWomenOwnedSmallBusiness
Title
Is Joint Venture Economically Disadvantaged Women Owned Small Business
FPDS Path
IDV/vendor/vendorSiteDetails/vendorSocioEconomicIndicators/isJointVentureEconomicallyDisadvantagedWomenOwnedSmallBusiness
Description
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.
Business Meaning
This field supports analysis of set-aside fulfillment, socioeconomic participation, and award distribution to economically disadvantaged women-owned small businesses structured as joint ventures. It is useful for compliance monitoring, vendor segmentation, and reporting on the use of these entities in federal contracting.
Example Value
0
Observed Non-Null Count
5,862,557

FPDS Compare

FPDS Query Variable
content__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isJointVentureEconomicallyDisadvantagedWomenOwnedSmallBusiness
FPDS XML Path
IDV/vendor/vendorSiteDetails/vendorSocioEconomicIndicators/isJointVentureEconomicallyDisadvantagedWomenOwnedSmallBusiness
Mapping Type
flattened_fpds_xml_field
Comparison Summary
FPDS Query flattens the original nested FPDS XML path 'IDV/vendor/vendorSiteDetails/vendorSocioEconomicIndicators/isJointVentureEconomicallyDisadvantagedWomenOwnedSmallBusiness' into the SQL-ready variable 'content__IDV__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 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.