UNPKG

propublica-nonprofit-explorer-sdk

Version:
20 lines (19 loc) 697 B
/** * National Taxonomy of Exempt Entities (NTEE) Major Group * * @see {@link https://urbaninstitute.github.io/nccs-legacy/ntee/ntee-history.html|National Taxonomy of Exempt Entities (NTEE) Codes} */ export declare const NTEE: { readonly ARTS_CULTURE_HUMANITIES: 1; readonly EDUCATION: 2; readonly ENVIRONMENT_ANIMAL_WELFARE: 3; readonly HEALTH: 4; readonly HUMAN_SERVICES: 5; readonly INTERNATIONAL_FOREIGN_AFFAIRS: 6; readonly PUBLIC_SOCIETAL_BENEFIT: 7; readonly RELIGION_RELATED: 8; readonly MUTUAL_MEMBERSHIP_BENEFIT: 9; readonly UNKNOWN_UNCLASSIFIED: 10; }; export type NTEEKey = keyof typeof NTEE; export type NTEEValue = (typeof NTEE)[NTEEKey];