Is Sub Continent Asian American Owned Business
Boolean or coded flag indicating whether the vendor is identified as a Sub Continent Asian American owned business in the IDV vendor site socio-economic indicators. A value such as 0 typically means the condition is not met; other observed values should be checked against the source code set or paired description fields if present.
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
- Identify IDVs awarded to Sub Continent Asian American owned businesses
- Calculate socio-economic set-aside or participation rates
- Segment vendor populations for diversity and compliance reporting
Common Mistakes
- Assuming 0 and NULL mean the same thing
- Using the flag without checking the code meaning in the source extract
Query Guidance
Filter on the affirmative value only after confirming the code set in your extract, for example WHERE isSubContinentAsianAmericanOwnedBusiness = 1 or = 'Y' depending on the source. If the field is nullable or coded, explicitly handle NULL and unknown values separately in counts and denominator logic.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__minorityOwned__isSubContinentAsianAmericanOwnedBusiness AS is_sub_continent_asian_american_owned_business
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__minorityOwned__isSubContinentAsianAmericanOwnedBusiness IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__minorityOwned__isSubContinentAsianAmericanOwnedBusiness AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__minorityOwned__isSubContinentAsianAmericanOwnedBusiness 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.