Is Other Minority Owned
Boolean flag indicating whether the vendor is classified as Other Minority Owned in the IDV vendor socio-economic indicators. A value such as 1/true generally means the record asserts this ownership status; 0/false means it does not.
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 other minority-owned vendors
- Aggregate award counts or obligated amounts by socio-economic status
- Combine with other ownership flags to compare diversity categories
Common Mistakes
- Confusing this flag with the human-readable ownership label rather than the indicator itself
- Assuming missing or null values mean 'no' instead of unknown or not reported
Query Guidance
Use it as a boolean predicate in WHERE clauses or CASE expressions, after confirming the dataset’s actual encoded values. Example pattern: WHERE content__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__minorityOwned__isOtherMinorityOwned = 1; if the source uses text codes, normalize first before aggregating.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__minorityOwned__isOtherMinorityOwned AS is_other_minority_owned
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__minorityOwned__isOtherMinorityOwned IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__minorityOwned__isOtherMinorityOwned AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__minorityOwned__isOtherMinorityOwned 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.