Is Women Owned Small Business
Boolean or coded indicator showing whether the vendor is classified as a Women-Owned Small Business (WOSB) for the IDV record. It captures the vendor’s socio-economic status as reported in FPDS vendor site details, and may appear as a flag value rather than a fully descriptive text field.
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 IDVs or vendors for women-owned small business analysis
- Calculate award volume or obligations associated with WOSB vendors
- Support socio-economic and diversity reporting
Common Mistakes
- Assuming a null value means the vendor is not women-owned
- Treating the field as a certification source rather than an FPDS-reported indicator
Query Guidance
Use explicit value mapping in SQL, for example WHERE field IN ('1','Y',1) for true-like values after confirming the dataset encoding. For reporting, separate true, false, and null/unknown cases, and avoid relying on generic boolean casting unless the source encoding is standardized.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isWomenOwnedSmallBusiness AS is_women_owned_small_business
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isWomenOwnedSmallBusiness IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isWomenOwnedSmallBusiness AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.