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.
FPDS Compare
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.