Is Hispanic American Owned Business
Boolean or coded indicator showing whether the vendor is identified in FPDS as a Hispanic American owned business within the minority-owned socioeconomic indicators. A value of 1/true typically means the record asserts this status, while 0/false means it does not. If coded values are present, interpret them using the observed dataset 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 awards involving Hispanic American owned businesses
- Compute socioeconomic participation rates
- Segment vendor populations for diversity analysis
Common Mistakes
- Assuming the field is a certification rather than a reported indicator
- Counting raw rows without accounting for multiple records per vendor or award
Query Guidance
Use explicit predicates on the stored code, such as = 1 for true/yes or IN ('Y','1','true') when the source is mixed. If you need analysis-level counts, deduplicate by the relevant business key before aggregating, and join to award or vendor identifiers to avoid double counting. Validate the actual coded values in your extract before writing production SQL.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__minorityOwned__isHispanicAmericanOwnedBusiness AS is_hispanic_american_owned_business
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__minorityOwned__isHispanicAmericanOwnedBusiness IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__minorityOwned__isHispanicAmericanOwnedBusiness AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__minorityOwned__isHispanicAmericanOwnedBusiness 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.