Is Native Hawaiian Servicing Institution
Boolean or coded indicator showing whether the vendor’s educational entity is a Native Hawaiian servicing institution. It flags a specific institution type within the vendor site details for the contract 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 tied to Native Hawaiian servicing institutions
- Segment vendor populations for compliance or policy analysis
- Count or compare awards across institution-type categories
Common Mistakes
- Interpreting 0 or null as definitive proof the vendor is not such an institution
- Using the field without checking whether it is stored as a boolean, numeric code, or paired label
Query Guidance
Use the field as a filter or grouping column after confirming the underlying coding convention. In SQL, test explicitly for the affirmative value observed in the dataset, and handle null separately; for example, WHERE field = 1 for true-like records, or include CASE logic when values are coded differently across extracts.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__isNativeHawaiianServicingInstitution AS is_native_hawaiian_servicing_institution
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__isNativeHawaiianServicingInstitution IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__isNativeHawaiianServicingInstitution AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__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.