Is Asian Pacific American Owned Business
Boolean or coded flag indicating whether the vendor reported in the Other Transaction IDV record is Asian Pacific American-owned. It identifies one minority-owned business status within the vendor socio-economic indicators structure.
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
- Supplier diversity segmentation
- Minority-owned business reporting
- Filtering awards by socio-economic category
Common Mistakes
- Assuming the flag proves certification beyond the reported record
- Ignoring null or coded values that may not equal simple 0/1
Query Guidance
Use the field in WHERE clauses after normalizing coded values to a boolean interpretation, for example by mapping accepted affirmative codes to true and everything else to false or null. Join or aggregate at the vendor, award, or IDV level as needed, and verify whether the data source stores 0/1, Y/N, or another code set before writing filters.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__minorityOwned__isAsianPacificAmericanOwnedBusiness AS is_asian_pacific_american_owned_business
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__minorityOwned__isAsianPacificAmericanOwnedBusiness IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__minorityOwned__isAsianPacificAmericanOwnedBusiness AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__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.