Is Native Hawaiian Servicing Institution

Boolean or coded flag indicating whether the vendor site is identified as a Native Hawaiian servicing institution in the IDV vendor site details. The field stores the record-level indicator for that educational-entity attribute rather than a narrative description.

Family: IDV
Category: Vendor Site Details
Data Type: boolean_or_code_flag
Semantic Type: flag
Mapping: flattened_fpds_xml_field
AI Confidence: high

Variable Overview

FPDS Query Variable
content__IDV__vendor__vendorSiteDetails__typeOfEducationalEntity__isNativeHawaiianServicingInstitution
Title
Is Native Hawaiian Servicing Institution
FPDS Path
IDV/vendor/vendorSiteDetails/typeOfEducationalEntity/isNativeHawaiianServicingInstitution
Description
Boolean or coded flag indicating whether the vendor site is identified as a Native Hawaiian servicing institution in the IDV vendor site details. The field stores the record-level indicator for that educational-entity attribute rather than a narrative description.
Business Meaning
This flag helps analysts identify awards associated with institutions that may be relevant to socioeconomic policy, education-focused contracting, and eligibility or outreach analyses. It can support segmentation of vendor populations for compliance review, target-setting, and reporting on contracts involving educational institutions with special status.
Example Value
0
Observed Non-Null Count
5,862,557

FPDS Compare

FPDS Query Variable
content__IDV__vendor__vendorSiteDetails__typeOfEducationalEntity__isNativeHawaiianServicingInstitution
FPDS XML Path
IDV/vendor/vendorSiteDetails/typeOfEducationalEntity/isNativeHawaiianServicingInstitution
Mapping Type
flattened_fpds_xml_field
Comparison Summary
FPDS Query flattens the original nested FPDS XML path 'IDV/vendor/vendorSiteDetails/typeOfEducationalEntity/isNativeHawaiianServicingInstitution' into the SQL-ready variable 'content__IDV__vendor__vendorSiteDetails__typeOfEducationalEntity__isNativeHawaiianServicingInstitution'.

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 vendor sites to institutions flagged as Native Hawaiian servicing institutions
  • Segment award counts or obligations by educational-entity status
  • Join with other vendor eligibility or institution-type indicators for compliance analysis

Common Mistakes

  • Assuming the flag proves current eligibility without checking source timing or other attributes
  • Treating null or 0 as equivalent without confirming the dataset's coding convention

Query Guidance

Use explicit boolean/coded-value filtering based on the observed FPDS extract convention, for example WHERE content__IDV__vendor__vendorSiteDetails__typeOfEducationalEntity__isNativeHawaiianServicingInstitution = 1 or = 'Y'. Include null-handling logic where needed, and pair this field with related educational-entity indicators when building classification logic.

SQL Examples

Preview values

SELECT
    content__IDV__vendor__vendorSiteDetails__typeOfEducationalEntity__isNativeHawaiianServicingInstitution AS is_native_hawaiian_servicing_institution
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__typeOfEducationalEntity__isNativeHawaiianServicingInstitution IS NOT NULL
LIMIT 25

Flag distribution

SELECT
    content__IDV__vendor__vendorSiteDetails__typeOfEducationalEntity__isNativeHawaiianServicingInstitution AS flag_value,
    count() AS record_count
FROM fpds.data
WHERE content__IDV__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.