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.

Family: Other Transaction 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__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isJointVentureEconomicallyDisadvantagedWomenOwnedSmallBusiness
Title
Is Joint Venture Economically Disadvantaged Women Owned Small Business
FPDS Path
OtherTransactionIDV/contractDetail/vendor/vendorSiteDetails/vendorSocioEconomicIndicators/isJointVentureEconomicallyDisadvantagedWomenOwnedSmallBusiness
Description
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.
Business Meaning
This field supports analysis of socio-economic participation in federal contracting, especially when assessing awards involving women-owned small business set-asides, diversity goals, and compliance reporting. It helps analysts identify transactions involving economically disadvantaged women-owned joint ventures and measure their use across agencies, vehicles, and time.
Example Value
0
Observed Non-Null Count
13,417

FPDS Compare

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

  • 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.