Is American Indian Owned
Boolean or coded indicator showing whether the vendor is reported as American Indian owned in the award record's vendor socioeconomic indicators. It is a classification flag tied to the vendor site details hierarchy, not a narrative description of ownership.
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 involving American Indian owned vendors
- Calculate socioeconomic participation rates
- Segment obligations by vendor ownership category
Common Mistakes
- Assuming the flag is always a strict boolean rather than a coded field
- Treating null or missing values as equivalent to false
Query Guidance
Use this field in WHERE clauses after confirming the code set, for example `WHERE isAmericanIndianOwned = '1'` or the equivalent true value in your extract. For rollups, normalize all observed representations to a single boolean logic and group with nulls separately from explicit no values.
SQL Examples
Preview values
SELECT
content__award__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isAmericanIndianOwned AS is_american_indian_owned
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isAmericanIndianOwned IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__award__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isAmericanIndianOwned AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isAmericanIndianOwned 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.