Is Sub Continent Asian American Owned Business
Boolean or coded flag indicating whether the vendor is identified in FPDS as a Subcontinent Asian American owned business. The field is stored under vendor socio-economic indicators and represents a specific ownership designation for the reporting vendor site.
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 to Subcontinent Asian American owned vendors
- Aggregate obligations by socioeconomic ownership category
- Support diversity and small business participation dashboards
Common Mistakes
- Assuming the flag alone proves current eligibility or certification status
- Comparing values without first confirming whether the extract uses numeric, text, or boolean encoding
Query Guidance
Use the field as a binary filter or grouping attribute in SQL, for example WHERE isSubContinentAsianAmericanOwnedBusiness = 1 or = 'Y' depending on the source encoding. When counting or summing, exclude nulls deliberately and validate against companion socioeconomic fields to avoid misclassification.
SQL Examples
Preview values
SELECT
content__award__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__minorityOwned__isSubContinentAsianAmericanOwnedBusiness AS is_sub_continent_asian_american_owned_business
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__minorityOwned__isSubContinentAsianAmericanOwnedBusiness IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__award__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__minorityOwned__isSubContinentAsianAmericanOwnedBusiness AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__award__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.