Is Asian Pacific American Owned Business
Boolean or coded indicator showing whether the vendor is reported as an Asian Pacific American owned business at the vendor site level. A value such as 0 typically means the condition is not indicated, while other coded values may represent affirmative, unknown, or not reported states depending on the FPDS extract.
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 or vendors for Asian Pacific American owned business status
- Calculate share of obligations to this vendor group
- Support diversity and small business reporting dashboards
Common Mistakes
- Assuming all non-1 values mean the same thing without checking the code set
- Using the field without validating whether it is populated at vendor site level versus award level
Query Guidance
Use explicit code handling in SQL, for example WHERE field = 1 for affirmative records only after confirming the coding scheme. If the dataset includes blanks or multiple coded states, normalize them with CASE logic and consider joining or co-selecting related socioeconomic indicator fields to avoid misclassification.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__minorityOwned__isAsianPacificAmericanOwnedBusiness AS is_asian_pacific_american_owned_business
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__minorityOwned__isAsianPacificAmericanOwnedBusiness IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__minorityOwned__isAsianPacificAmericanOwnedBusiness AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__minorityOwned__isAsianPacificAmericanOwnedBusiness 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.