Is Sub Continent Asian American Owned Business
Boolean or coded flag indicating whether the vendor is identified as a Subcontinent Asian American owned business in the vendor socio-economic indicators for an Other Transaction Award record. A value of 1 or true generally means the business is marked as meeting this ownership category; 0, false, or null means it is not marked or not reported.
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 vendors marked as Subcontinent Asian American owned
- Calculate socio-economic participation rates by vendor group
- Segment award values or counts by ownership category
Common Mistakes
- Treating null the same as a confirmed no
- Assuming the flag reflects a current certification rather than the recorded transaction attribute
Query Guidance
Use this field in WHERE clauses only after normalizing coded values to a consistent boolean or binary test, for example by checking for 1, true, or an equivalent affirmative code. When aggregating, separate affirmative, non-affirmative, and missing values so data quality and reporting gaps remain visible.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__minorityOwned__isSubContinentAsianAmericanOwnedBusiness AS is_sub_continent_asian_american_owned_business
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__minorityOwned__isSubContinentAsianAmericanOwnedBusiness IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__minorityOwned__isSubContinentAsianAmericanOwnedBusiness AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__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.