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.

Family: Other Transaction 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__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__isNativeHawaiianServicingInstitution
Title
Is Native Hawaiian Servicing Institution
FPDS Path
OtherTransactionIDV/contractDetail/vendor/vendorSiteDetails/typeOfEducationalEntity/isNativeHawaiianServicingInstitution
Description
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.
Business Meaning
This field helps analysts identify awards associated with specialized educational institutions that may be subject to targeted statutory, policy, or reporting treatment. It supports segmentation of supplier populations and review of procurement patterns involving institution-specific eligibility or socioeconomic analysis.
Example Value
0
Observed Non-Null Count
13,417

FPDS Compare

FPDS Query Variable
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__isNativeHawaiianServicingInstitution
FPDS XML Path
OtherTransactionIDV/contractDetail/vendor/vendorSiteDetails/typeOfEducationalEntity/isNativeHawaiianServicingInstitution
Mapping Type
flattened_fpds_xml_field
Comparison Summary
FPDS Query flattens the original nested FPDS XML path 'OtherTransactionIDV/contractDetail/vendor/vendorSiteDetails/typeOfEducationalEntity/isNativeHawaiianServicingInstitution' into the SQL-ready variable 'content__OtherTransactionIDV__contractDetail__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 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.