Is Alaskan Native Servicing Institution
Boolean or coded flag indicating whether the vendor is an Alaskan Native servicing institution. In FPDS, this is a vendor site detail classification tied to the record’s educational-entity attributes rather than a general vendor characteristic.
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 Alaska Native servicing institutions
- Measure participation in institution-specific procurement programs
- Support compliance and demographic segmentation reporting
Common Mistakes
- Assuming null, 0, and false all mean the same thing without checking source encoding
- Using this field as a general minority-owned business indicator
Query Guidance
Use explicit predicates matched to the dataset’s encoding, for example `= 1`, `= 'Y'`, or `IS TRUE` after confirming the stored format. When analyzing rates or counts, group by this flag only after excluding unrelated vendor-site rows and confirming the award level you intend to summarize.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__isAlaskanNativeServicingInstitution AS is_alaskan_native_servicing_institution
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__isAlaskanNativeServicingInstitution IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__isAlaskanNativeServicingInstitution AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfEducationalEntity__isAlaskanNativeServicingInstitution 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.