Is Women Owned Small Business
Boolean or coded flag indicating whether the vendor is identified as a women-owned small business in the award record. It captures the socioeconomic status assertion stored at the vendor site detail level for the transaction.
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
- Count awards or obligations to women-owned small businesses
- Filter transactions for socioeconomic performance reporting
- Segment vendor populations by ownership status
Common Mistakes
- Treating a null, blank, or unknown value as a definitive no
- Mixing this flag with other socioeconomic indicators without checking each field separately
Query Guidance
Use this field as a filter or grouping flag in WHERE and CASE expressions, for example `WHERE isWomenOwnedSmallBusiness IN (1, '1', 'Y')`. Validate the encoded values in your dataset first, and exclude nulls explicitly when you need a strict yes/no count.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isWomenOwnedSmallBusiness AS is_women_owned_small_business
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isWomenOwnedSmallBusiness IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isWomenOwnedSmallBusiness AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__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.