Is Native Hawaiian Owned Organization or Firm
Boolean or coded flag indicating whether the vendor associated with the IDV is identified in FPDS as a Native Hawaiian owned organization or firm. A value of 1 or a true-like code means the socioeconomic designation is present; 0 or a false-like code means it is not. If the dataset stores coded values, analysts should verify the observed code set and any paired descriptions.
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 or vendors for Native Hawaiian owned business analysis
- Calculate socioeconomic participation rates by agency, period, or product/service category
- Build dashboards comparing vendor ownership categories across procurement segments
Common Mistakes
- Assuming the flag proves current certification or eligibility without checking source timing
- Counting every row as a unique vendor instead of deduplicating repeated vendor records
Query Guidance
Use the field as a filter or grouping attribute, e.g. WHERE content__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isNativeHawaiianOwnedOrganizationOrFirm IN (1, '1', 'Y', 'Yes') depending on the observed coding. When building metrics, explicitly handle nulls and validate whether the value is stored as a boolean, numeric flag, or text code before aggregating.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isNativeHawaiianOwnedOrganizationOrFirm AS is_native_hawaiian_owned_organization_or_firm
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isNativeHawaiianOwnedOrganizationOrFirm IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isNativeHawaiianOwnedOrganizationOrFirm AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.