Is Native Hawaiian Owned Organization or Firm
Boolean or coded indicator showing whether the vendor identified on the award is a Native Hawaiian owned organization or firm. A value such as 1/yes typically means the vendor meets this socioeconomic ownership condition; 0/no means it does not, subject to how the source record was populated.
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 Native Hawaiian owned vendors
- Aggregate socioeconomic spend by vendor ownership category
- Compare award counts and dollars across vendor populations
Common Mistakes
- Assuming the flag proves current third-party certification
- Treating null, blank, and false as the same without checking data completeness
Query Guidance
Use the field in WHERE clauses to isolate records where the indicator is affirmative, and pair it with award amount or obligation fields for spend analysis. When summarizing, group by the flag after normalizing coded values to a consistent yes/no representation and exclude nulls only if you intend to measure populated responses rather than all awards.
SQL Examples
Preview values
SELECT
content__award__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isNativeHawaiianOwnedOrganizationOrFirm AS is_native_hawaiian_owned_organization_or_firm
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isNativeHawaiianOwnedOrganizationOrFirm IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__award__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isNativeHawaiianOwnedOrganizationOrFirm AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isNativeHawaiianOwnedOrganizationOrFirm 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.