Is Economically Disadvantaged Women Owned Small Business
Boolean or coded indicator showing whether the vendor is identified as an Economically Disadvantaged Women-Owned Small Business in the IDV vendor site socio-economic indicators. A value such as 1/true indicates the designation is present; 0/false indicates it is not, subject to source-system coding conventions.
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 awarded to EDWOSB vendors
- Report socio-economic participation counts and obligation totals
- Segment vendor portfolios for compliance and diversity analysis
Common Mistakes
- Assuming a null or 0 value always means the vendor is not eligible rather than simply not indicated in the record
- Using the flag without checking whether the dataset encodes booleans as numeric, text, or mixed values
Query Guidance
Use this field in WHERE clauses to isolate EDWOSB records and in CASE expressions for counts and spend shares, for example filtering on value = 1 or true after confirming the dataset encoding. When aggregating, pair it with award date, agency, and IDV identifiers, and validate null handling so missing values are not counted as false.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isEconomicallyDisadvantagedWomenOwnedSmallBusiness AS is_economically_disadvantaged_women_owned_small_business
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isEconomicallyDisadvantagedWomenOwnedSmallBusiness IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isEconomicallyDisadvantagedWomenOwnedSmallBusiness AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isEconomicallyDisadvantagedWomenOwnedSmallBusiness 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.