Is Women Owned Small Business

Boolean or coded flag indicating whether the vendor at the recorded site is identified as a women-owned small business. It is a vendor socio-economic indicator attached to the vendor site details for this Other Transaction IDV 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__isWomenOwnedSmallBusiness
Title
Is Women Owned Small Business
FPDS Path
OtherTransactionIDV/contractDetail/vendor/vendorSiteDetails/vendorSocioEconomicIndicators/isWomenOwnedSmallBusiness
Description
Boolean or coded flag indicating whether the vendor at the recorded site is identified as a women-owned small business. It is a vendor socio-economic indicator attached to the vendor site details for this Other Transaction IDV record.
Business Meaning
This field supports socio-economic participation analysis, supplier diversity reporting, and compliance review in federal procurement. Analysts use it to measure obligations or awards associated with women-owned small businesses and to segment vendor populations for policy and market-share analysis.
Example Value
0
Observed Non-Null Count
13,417

FPDS Compare

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

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 or vendors by women-owned small business status
  • Calculate socio-economic participation shares
  • Support diversity, set-aside, and compliance reporting

Common Mistakes

  • Assuming every non-null value means yes without checking the code set
  • Using the field without confirming whether it is at the vendor site level versus award level

Query Guidance

Use this field in WHERE clauses and CASE expressions after normalizing the coded values to yes/no. For example, map the recorded flag to 1 for women-owned small business and 0 otherwise, then aggregate by obligation, count, or vendor as needed; if your extract includes description pairs, prefer the code/flag for logic and the description for display only.

SQL Examples

Preview values

SELECT
    content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isWomenOwnedSmallBusiness AS is_women_owned_small_business
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isWomenOwnedSmallBusiness IS NOT NULL
LIMIT 25

Flag distribution

SELECT
    content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isWomenOwnedSmallBusiness AS flag_value,
    count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isWomenOwnedSmallBusiness 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.