Is Women Owned
Boolean or coded flag indicating whether the vendor is classified as women-owned in the award record's vendor socioeconomic indicators. It reflects the record-level status stored for the vendor site associated with the Other Transaction IDV.
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 vendors reported as women-owned
- Filter supplier diversity cohorts for reporting
- Compare obligation or award volumes by socioeconomic status
Common Mistakes
- Assuming 0 always means false without confirming the dataset's code set
- Using this field as a vendor master attribute rather than a record-level indicator
Query Guidance
Use the field in WHERE clauses or CASE expressions after confirming the code map for true/false values. For example, filter for the women-owned population with the observed affirmative value, and exclude null or unknown values explicitly when building summary metrics.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isWomenOwned AS is_women_owned
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isWomenOwned IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isWomenOwned AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isWomenOwned 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.