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.

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__isJointVentureWomenOwnedSmallBusiness
Title
Is Joint Venture Women Owned Small Business
FPDS Path
OtherTransactionIDV/contractDetail/vendor/vendorSiteDetails/vendorSocioEconomicIndicators/isJointVentureWomenOwnedSmallBusiness
Description
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.
Business Meaning
This field supports analysis of small business and women-owned business participation in federal procurement, including socioeconomic set-aside compliance, vendor diversity metrics, and award segmentation. It helps identify awards and vendor relationships that meet specific program or reporting requirements.
Example Value
0
Observed Non-Null Count
13,417

FPDS Compare

FPDS Query Variable
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isJointVentureWomenOwnedSmallBusiness
FPDS XML Path
OtherTransactionIDV/contractDetail/vendor/vendorSiteDetails/vendorSocioEconomicIndicators/isJointVentureWomenOwnedSmallBusiness
Mapping Type
flattened_fpds_xml_field
Comparison Summary
FPDS Query flattens the original nested FPDS XML path 'OtherTransactionIDV/contractDetail/vendor/vendorSiteDetails/vendorSocioEconomicIndicators/isJointVentureWomenOwnedSmallBusiness' into the SQL-ready variable 'content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isJointVentureWomenOwnedSmallBusiness'.

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.