Is Native Hawaiian Servicing Institution
Boolean or coded flag indicating whether the vendor site is associated with a Native Hawaiian servicing institution. It is a binary indicator stored under the vendor site's type-of-educational-entity details for an Other Transaction Award record.
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 Native Hawaiian servicing institutions
- Segment vendor-site records by educational institution type
- Support compliance and demographic reporting
Common Mistakes
- Assuming 0 always means absent rather than coded/no value
- Using the field without checking related educational-entity indicators
Query Guidance
In SQL, filter on the affirmative code used in your dataset after verifying the code set, for example WHERE field = 1 or WHERE field = 'Y'. When aggregating, exclude nulls separately if you need to distinguish unknown from false, and join or compare with related type-of-educational-entity fields to validate classification.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__isNativeHawaiianServicingInstitution AS is_native_hawaiian_servicing_institution
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__isNativeHawaiianServicingInstitution IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__isNativeHawaiianServicingInstitution AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__isNativeHawaiianServicingInstitution 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.