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.

Family: IDV
Category: Vendor Site Details
Data Type: boolean_or_code_flag
Semantic Type: flag
Mapping: flattened_fpds_xml_field
AI Confidence: high

Variable Overview

FPDS Query Variable
content__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__minorityOwned__isAsianPacificAmericanOwnedBusiness
Title
Is Asian Pacific American Owned Business
FPDS Path
IDV/vendor/vendorSiteDetails/vendorSocioEconomicIndicators/minorityOwned/isAsianPacificAmericanOwnedBusiness
Description
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.
Business Meaning
This field supports socio-economic analysis of award distribution to Asian Pacific American owned businesses and is used in diversity, supplier participation, and compliance reporting. It helps analysts measure set-aside utilization, vendor representation, and trends in awards to minority-owned firms.
Example Value
0
Observed Non-Null Count
5,862,557

FPDS Compare

FPDS Query Variable
content__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__minorityOwned__isAsianPacificAmericanOwnedBusiness
FPDS XML Path
IDV/vendor/vendorSiteDetails/vendorSocioEconomicIndicators/minorityOwned/isAsianPacificAmericanOwnedBusiness
Mapping Type
flattened_fpds_xml_field
Comparison Summary
FPDS Query flattens the original nested FPDS XML path 'IDV/vendor/vendorSiteDetails/vendorSocioEconomicIndicators/minorityOwned/isAsianPacificAmericanOwnedBusiness' into the SQL-ready variable 'content__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__minorityOwned__isAsianPacificAmericanOwnedBusiness'.

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.