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.

Family: Other Transaction Award
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__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__isNativeHawaiianServicingInstitution
Title
Is Native Hawaiian Servicing Institution
FPDS Path
OtherTransactionAward/contractDetail/vendor/vendorSiteDetails/typeOfEducationalEntity/isNativeHawaiianServicingInstitution
Description
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.
Business Meaning
This field helps analysts identify awards involving institutions that meet Native Hawaiian servicing criteria, which can matter for small business and socioeconomic reporting, institutional targeting, and compliance-oriented reviews. It supports segmentation of vendor populations tied to education-related eligibility categories.
Example Value
0
Observed Non-Null Count
38,894

FPDS Compare

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