@aibrains/shared-types 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. package/dist/schemas/academics/assignment.schema.d.ts +10 -10
  2. package/dist/schemas/academics/course.schema.d.ts +10 -10
  3. package/dist/schemas/academics/grade.schema.d.ts +13 -13
  4. package/dist/schemas/enrollment/enrollment.schema.d.ts +49 -49
  5. package/dist/schemas/identity/academic-year.schema.d.ts +12 -12
  6. package/dist/schemas/identity/auth.schema.d.ts +10 -10
  7. package/dist/schemas/identity/credential.schema.d.ts +12 -12
  8. package/dist/schemas/identity/education-org-descriptors.d.ts +314 -0
  9. package/dist/schemas/identity/education-org-descriptors.d.ts.map +1 -0
  10. package/dist/schemas/identity/education-org-descriptors.js +245 -0
  11. package/dist/schemas/identity/education-org-descriptors.js.map +1 -0
  12. package/dist/schemas/identity/education-org-hierarchy.schema.d.ts +65 -0
  13. package/dist/schemas/identity/education-org-hierarchy.schema.d.ts.map +1 -0
  14. package/dist/schemas/identity/education-org-hierarchy.schema.js +46 -0
  15. package/dist/schemas/identity/education-org-hierarchy.schema.js.map +1 -0
  16. package/dist/schemas/identity/education-organization.schema.d.ts +127 -0
  17. package/dist/schemas/identity/education-organization.schema.d.ts.map +1 -0
  18. package/dist/schemas/identity/education-organization.schema.js +102 -0
  19. package/dist/schemas/identity/education-organization.schema.js.map +1 -0
  20. package/dist/schemas/identity/education-service-center.schema.d.ts +826 -0
  21. package/dist/schemas/identity/education-service-center.schema.d.ts.map +1 -0
  22. package/dist/schemas/identity/education-service-center.schema.js +85 -0
  23. package/dist/schemas/identity/education-service-center.schema.js.map +1 -0
  24. package/dist/schemas/identity/index.d.ts +8 -0
  25. package/dist/schemas/identity/index.d.ts.map +1 -1
  26. package/dist/schemas/identity/index.js +9 -0
  27. package/dist/schemas/identity/index.js.map +1 -1
  28. package/dist/schemas/identity/local-education-agency.schema.d.ts +888 -0
  29. package/dist/schemas/identity/local-education-agency.schema.d.ts.map +1 -0
  30. package/dist/schemas/identity/local-education-agency.schema.js +96 -0
  31. package/dist/schemas/identity/local-education-agency.schema.js.map +1 -0
  32. package/dist/schemas/identity/school.schema.d.ts +404 -0
  33. package/dist/schemas/identity/school.schema.d.ts.map +1 -1
  34. package/dist/schemas/identity/school.schema.js +35 -0
  35. package/dist/schemas/identity/school.schema.js.map +1 -1
  36. package/dist/schemas/identity/staff-assignment.schema.d.ts +240 -0
  37. package/dist/schemas/identity/staff-assignment.schema.d.ts.map +1 -0
  38. package/dist/schemas/identity/staff-assignment.schema.js +72 -0
  39. package/dist/schemas/identity/staff-assignment.schema.js.map +1 -0
  40. package/dist/schemas/identity/staff-employment-history.schema.d.ts +114 -0
  41. package/dist/schemas/identity/staff-employment-history.schema.d.ts.map +1 -0
  42. package/dist/schemas/identity/staff-employment-history.schema.js +31 -0
  43. package/dist/schemas/identity/staff-employment-history.schema.js.map +1 -0
  44. package/dist/schemas/identity/staff.schema.d.ts +482 -10
  45. package/dist/schemas/identity/staff.schema.d.ts.map +1 -1
  46. package/dist/schemas/identity/staff.schema.js +15 -1
  47. package/dist/schemas/identity/staff.schema.js.map +1 -1
  48. package/dist/schemas/identity/state-education-agency.schema.d.ts +511 -0
  49. package/dist/schemas/identity/state-education-agency.schema.d.ts.map +1 -0
  50. package/dist/schemas/identity/state-education-agency.schema.js +68 -0
  51. package/dist/schemas/identity/state-education-agency.schema.js.map +1 -0
  52. package/dist/schemas/identity/user.schema.d.ts +10 -10
  53. package/package.json +9 -5
@@ -54,11 +54,11 @@ export declare const createCredentialSchema: z.ZodObject<{
54
54
  verificationStatus: "pending" | "expired" | "revoked" | "verified" | "rejected";
55
55
  isRenewable: boolean;
56
56
  renewalReminderDays: number;
57
+ gradeLevels?: ("pre_k" | "kindergarten" | "first" | "second" | "third" | "fourth" | "fifth" | "sixth" | "seventh" | "eighth" | "ninth" | "tenth" | "eleventh" | "twelfth" | "adult_education" | "ungraded")[] | undefined;
57
58
  description?: string | undefined;
58
59
  credentialFieldDescriptor?: "special_education" | "other" | "elementary_education" | "secondary_education" | "early_childhood" | "mathematics" | "science" | "english_language_arts" | "social_studies" | "foreign_language" | "physical_education" | "music" | "art" | "technology" | "counseling" | "administration" | "library_media" | undefined;
59
60
  expirationDate?: string | undefined;
60
61
  issuingState?: string | undefined;
61
- gradeLevels?: ("pre_k" | "kindergarten" | "first" | "second" | "third" | "fourth" | "fifth" | "sixth" | "seventh" | "eighth" | "ninth" | "tenth" | "eleventh" | "twelfth" | "adult_education" | "ungraded")[] | undefined;
62
62
  subjects?: string[] | undefined;
63
63
  documentUrl?: string | undefined;
64
64
  documentFileName?: string | undefined;
@@ -71,11 +71,11 @@ export declare const createCredentialSchema: z.ZodObject<{
71
71
  credentialTypeDescriptor: "other" | "certification" | "license" | "endorsement" | "degree" | "registration" | "permit" | "clearance" | "training";
72
72
  issuanceDate: string;
73
73
  issuingOrganization: string;
74
+ gradeLevels?: ("pre_k" | "kindergarten" | "first" | "second" | "third" | "fourth" | "fifth" | "sixth" | "seventh" | "eighth" | "ninth" | "tenth" | "eleventh" | "twelfth" | "adult_education" | "ungraded")[] | undefined;
74
75
  description?: string | undefined;
75
76
  credentialFieldDescriptor?: "special_education" | "other" | "elementary_education" | "secondary_education" | "early_childhood" | "mathematics" | "science" | "english_language_arts" | "social_studies" | "foreign_language" | "physical_education" | "music" | "art" | "technology" | "counseling" | "administration" | "library_media" | undefined;
76
77
  expirationDate?: string | undefined;
77
78
  issuingState?: string | undefined;
78
- gradeLevels?: ("pre_k" | "kindergarten" | "first" | "second" | "third" | "fourth" | "fifth" | "sixth" | "seventh" | "eighth" | "ninth" | "tenth" | "eleventh" | "twelfth" | "adult_education" | "ungraded")[] | undefined;
79
79
  subjects?: string[] | undefined;
80
80
  documentUrl?: string | undefined;
81
81
  documentFileName?: string | undefined;
@@ -111,6 +111,7 @@ export declare const updateCredentialSchema: z.ZodObject<z.objectUtil.extendShap
111
111
  verificationStatus: z.ZodOptional<z.ZodEnum<["pending", "verified", "rejected", "expired", "revoked"]>>;
112
112
  }>, "strip", z.ZodTypeAny, {
113
113
  name?: string | undefined;
114
+ gradeLevels?: ("pre_k" | "kindergarten" | "first" | "second" | "third" | "fourth" | "fifth" | "sixth" | "seventh" | "eighth" | "ninth" | "tenth" | "eleventh" | "twelfth" | "adult_education" | "ungraded")[] | undefined;
114
115
  description?: string | undefined;
115
116
  credentialTypeDescriptor?: "other" | "certification" | "license" | "endorsement" | "degree" | "registration" | "permit" | "clearance" | "training" | undefined;
116
117
  credentialFieldDescriptor?: "special_education" | "other" | "elementary_education" | "secondary_education" | "early_childhood" | "mathematics" | "science" | "english_language_arts" | "social_studies" | "foreign_language" | "physical_education" | "music" | "art" | "technology" | "counseling" | "administration" | "library_media" | undefined;
@@ -118,7 +119,6 @@ export declare const updateCredentialSchema: z.ZodObject<z.objectUtil.extendShap
118
119
  expirationDate?: string | undefined;
119
120
  issuingState?: string | undefined;
120
121
  issuingOrganization?: string | undefined;
121
- gradeLevels?: ("pre_k" | "kindergarten" | "first" | "second" | "third" | "fourth" | "fifth" | "sixth" | "seventh" | "eighth" | "ninth" | "tenth" | "eleventh" | "twelfth" | "adult_education" | "ungraded")[] | undefined;
122
122
  subjects?: string[] | undefined;
123
123
  documentUrl?: string | undefined;
124
124
  documentFileName?: string | undefined;
@@ -130,6 +130,7 @@ export declare const updateCredentialSchema: z.ZodObject<z.objectUtil.extendShap
130
130
  renewalReminderDays?: number | undefined;
131
131
  }, {
132
132
  name?: string | undefined;
133
+ gradeLevels?: ("pre_k" | "kindergarten" | "first" | "second" | "third" | "fourth" | "fifth" | "sixth" | "seventh" | "eighth" | "ninth" | "tenth" | "eleventh" | "twelfth" | "adult_education" | "ungraded")[] | undefined;
133
134
  description?: string | undefined;
134
135
  credentialTypeDescriptor?: "other" | "certification" | "license" | "endorsement" | "degree" | "registration" | "permit" | "clearance" | "training" | undefined;
135
136
  credentialFieldDescriptor?: "special_education" | "other" | "elementary_education" | "secondary_education" | "early_childhood" | "mathematics" | "science" | "english_language_arts" | "social_studies" | "foreign_language" | "physical_education" | "music" | "art" | "technology" | "counseling" | "administration" | "library_media" | undefined;
@@ -137,7 +138,6 @@ export declare const updateCredentialSchema: z.ZodObject<z.objectUtil.extendShap
137
138
  expirationDate?: string | undefined;
138
139
  issuingState?: string | undefined;
139
140
  issuingOrganization?: string | undefined;
140
- gradeLevels?: ("pre_k" | "kindergarten" | "first" | "second" | "third" | "fourth" | "fifth" | "sixth" | "seventh" | "eighth" | "ninth" | "tenth" | "eleventh" | "twelfth" | "adult_education" | "ungraded")[] | undefined;
141
141
  subjects?: string[] | undefined;
142
142
  documentUrl?: string | undefined;
143
143
  documentFileName?: string | undefined;
@@ -194,11 +194,11 @@ export declare const credentialResponseSchema: z.ZodObject<{
194
194
  credentialId: string;
195
195
  isExpired: boolean;
196
196
  isExpiringSoon: boolean;
197
+ gradeLevels?: ("pre_k" | "kindergarten" | "first" | "second" | "third" | "fourth" | "fifth" | "sixth" | "seventh" | "eighth" | "ninth" | "tenth" | "eleventh" | "twelfth" | "adult_education" | "ungraded")[] | undefined;
197
198
  description?: string | undefined;
198
199
  credentialFieldDescriptor?: "special_education" | "other" | "elementary_education" | "secondary_education" | "early_childhood" | "mathematics" | "science" | "english_language_arts" | "social_studies" | "foreign_language" | "physical_education" | "music" | "art" | "technology" | "counseling" | "administration" | "library_media" | undefined;
199
200
  expirationDate?: string | undefined;
200
201
  issuingState?: string | undefined;
201
- gradeLevels?: ("pre_k" | "kindergarten" | "first" | "second" | "third" | "fourth" | "fifth" | "sixth" | "seventh" | "eighth" | "ninth" | "tenth" | "eleventh" | "twelfth" | "adult_education" | "ungraded")[] | undefined;
202
202
  subjects?: string[] | undefined;
203
203
  documentUrl?: string | undefined;
204
204
  documentFileName?: string | undefined;
@@ -223,11 +223,11 @@ export declare const credentialResponseSchema: z.ZodObject<{
223
223
  credentialId: string;
224
224
  isExpired: boolean;
225
225
  isExpiringSoon: boolean;
226
+ gradeLevels?: ("pre_k" | "kindergarten" | "first" | "second" | "third" | "fourth" | "fifth" | "sixth" | "seventh" | "eighth" | "ninth" | "tenth" | "eleventh" | "twelfth" | "adult_education" | "ungraded")[] | undefined;
226
227
  description?: string | undefined;
227
228
  credentialFieldDescriptor?: "special_education" | "other" | "elementary_education" | "secondary_education" | "early_childhood" | "mathematics" | "science" | "english_language_arts" | "social_studies" | "foreign_language" | "physical_education" | "music" | "art" | "technology" | "counseling" | "administration" | "library_media" | undefined;
228
229
  expirationDate?: string | undefined;
229
230
  issuingState?: string | undefined;
230
- gradeLevels?: ("pre_k" | "kindergarten" | "first" | "second" | "third" | "fourth" | "fifth" | "sixth" | "seventh" | "eighth" | "ninth" | "tenth" | "eleventh" | "twelfth" | "adult_education" | "ungraded")[] | undefined;
231
231
  subjects?: string[] | undefined;
232
232
  documentUrl?: string | undefined;
233
233
  documentFileName?: string | undefined;
@@ -284,11 +284,11 @@ export declare const credentialListResponseSchema: z.ZodObject<{
284
284
  credentialId: string;
285
285
  isExpired: boolean;
286
286
  isExpiringSoon: boolean;
287
+ gradeLevels?: ("pre_k" | "kindergarten" | "first" | "second" | "third" | "fourth" | "fifth" | "sixth" | "seventh" | "eighth" | "ninth" | "tenth" | "eleventh" | "twelfth" | "adult_education" | "ungraded")[] | undefined;
287
288
  description?: string | undefined;
288
289
  credentialFieldDescriptor?: "special_education" | "other" | "elementary_education" | "secondary_education" | "early_childhood" | "mathematics" | "science" | "english_language_arts" | "social_studies" | "foreign_language" | "physical_education" | "music" | "art" | "technology" | "counseling" | "administration" | "library_media" | undefined;
289
290
  expirationDate?: string | undefined;
290
291
  issuingState?: string | undefined;
291
- gradeLevels?: ("pre_k" | "kindergarten" | "first" | "second" | "third" | "fourth" | "fifth" | "sixth" | "seventh" | "eighth" | "ninth" | "tenth" | "eleventh" | "twelfth" | "adult_education" | "ungraded")[] | undefined;
292
292
  subjects?: string[] | undefined;
293
293
  documentUrl?: string | undefined;
294
294
  documentFileName?: string | undefined;
@@ -313,11 +313,11 @@ export declare const credentialListResponseSchema: z.ZodObject<{
313
313
  credentialId: string;
314
314
  isExpired: boolean;
315
315
  isExpiringSoon: boolean;
316
+ gradeLevels?: ("pre_k" | "kindergarten" | "first" | "second" | "third" | "fourth" | "fifth" | "sixth" | "seventh" | "eighth" | "ninth" | "tenth" | "eleventh" | "twelfth" | "adult_education" | "ungraded")[] | undefined;
316
317
  description?: string | undefined;
317
318
  credentialFieldDescriptor?: "special_education" | "other" | "elementary_education" | "secondary_education" | "early_childhood" | "mathematics" | "science" | "english_language_arts" | "social_studies" | "foreign_language" | "physical_education" | "music" | "art" | "technology" | "counseling" | "administration" | "library_media" | undefined;
318
319
  expirationDate?: string | undefined;
319
320
  issuingState?: string | undefined;
320
- gradeLevels?: ("pre_k" | "kindergarten" | "first" | "second" | "third" | "fourth" | "fifth" | "sixth" | "seventh" | "eighth" | "ninth" | "tenth" | "eleventh" | "twelfth" | "adult_education" | "ungraded")[] | undefined;
321
321
  subjects?: string[] | undefined;
322
322
  documentUrl?: string | undefined;
323
323
  documentFileName?: string | undefined;
@@ -347,11 +347,11 @@ export declare const credentialListResponseSchema: z.ZodObject<{
347
347
  credentialId: string;
348
348
  isExpired: boolean;
349
349
  isExpiringSoon: boolean;
350
+ gradeLevels?: ("pre_k" | "kindergarten" | "first" | "second" | "third" | "fourth" | "fifth" | "sixth" | "seventh" | "eighth" | "ninth" | "tenth" | "eleventh" | "twelfth" | "adult_education" | "ungraded")[] | undefined;
350
351
  description?: string | undefined;
351
352
  credentialFieldDescriptor?: "special_education" | "other" | "elementary_education" | "secondary_education" | "early_childhood" | "mathematics" | "science" | "english_language_arts" | "social_studies" | "foreign_language" | "physical_education" | "music" | "art" | "technology" | "counseling" | "administration" | "library_media" | undefined;
352
353
  expirationDate?: string | undefined;
353
354
  issuingState?: string | undefined;
354
- gradeLevels?: ("pre_k" | "kindergarten" | "first" | "second" | "third" | "fourth" | "fifth" | "sixth" | "seventh" | "eighth" | "ninth" | "tenth" | "eleventh" | "twelfth" | "adult_education" | "ungraded")[] | undefined;
355
355
  subjects?: string[] | undefined;
356
356
  documentUrl?: string | undefined;
357
357
  documentFileName?: string | undefined;
@@ -381,11 +381,11 @@ export declare const credentialListResponseSchema: z.ZodObject<{
381
381
  credentialId: string;
382
382
  isExpired: boolean;
383
383
  isExpiringSoon: boolean;
384
+ gradeLevels?: ("pre_k" | "kindergarten" | "first" | "second" | "third" | "fourth" | "fifth" | "sixth" | "seventh" | "eighth" | "ninth" | "tenth" | "eleventh" | "twelfth" | "adult_education" | "ungraded")[] | undefined;
384
385
  description?: string | undefined;
385
386
  credentialFieldDescriptor?: "special_education" | "other" | "elementary_education" | "secondary_education" | "early_childhood" | "mathematics" | "science" | "english_language_arts" | "social_studies" | "foreign_language" | "physical_education" | "music" | "art" | "technology" | "counseling" | "administration" | "library_media" | undefined;
386
387
  expirationDate?: string | undefined;
387
388
  issuingState?: string | undefined;
388
- gradeLevels?: ("pre_k" | "kindergarten" | "first" | "second" | "third" | "fourth" | "fifth" | "sixth" | "seventh" | "eighth" | "ninth" | "tenth" | "eleventh" | "twelfth" | "adult_education" | "ungraded")[] | undefined;
389
389
  subjects?: string[] | undefined;
390
390
  documentUrl?: string | undefined;
391
391
  documentFileName?: string | undefined;
@@ -453,19 +453,19 @@ export declare const credentialExpirationAlertSchema: z.ZodObject<{
453
453
  schoolId: string;
454
454
  schoolName: string;
455
455
  staffId: string;
456
+ staffName: string;
456
457
  expirationDate: string;
457
458
  credentialId: string;
458
459
  daysUntilExpiration: number;
459
- staffName: string;
460
460
  credentialName: string;
461
461
  }, {
462
462
  schoolId: string;
463
463
  schoolName: string;
464
464
  staffId: string;
465
+ staffName: string;
465
466
  expirationDate: string;
466
467
  credentialId: string;
467
468
  daysUntilExpiration: number;
468
- staffName: string;
469
469
  credentialName: string;
470
470
  }>;
471
471
  export type CredentialExpirationAlertDto = z.infer<typeof credentialExpirationAlertSchema>;
@@ -0,0 +1,314 @@
1
+ /**
2
+ * Education Organization Descriptor Constants - Identity Service
3
+ *
4
+ * Ed-Fi descriptor constants for the Education Organization domain.
5
+ * All URIs follow the Ed-Fi pattern: uri://ed-fi.org/{Namespace}#{Value}
6
+ *
7
+ * Ed-Fi Data Standard v5:
8
+ * https://docs.ed-fi.org/reference/data-exchange/data-standard/model-reference/education-organization-domain/
9
+ */
10
+ import { z } from 'zod';
11
+ export declare const descriptorEntrySchema: z.ZodObject<{
12
+ value: z.ZodString;
13
+ label: z.ZodString;
14
+ uri: z.ZodString;
15
+ }, "strip", z.ZodTypeAny, {
16
+ value: string;
17
+ label: string;
18
+ uri: string;
19
+ }, {
20
+ value: string;
21
+ label: string;
22
+ uri: string;
23
+ }>;
24
+ export type DescriptorEntry = z.infer<typeof descriptorEntrySchema>;
25
+ export declare const SCHOOL_CATEGORY_DESCRIPTORS: readonly [{
26
+ readonly value: "AllLevels";
27
+ readonly label: "All Levels";
28
+ readonly uri: "uri://ed-fi.org/SchoolCategoryDescriptor#All Levels";
29
+ }, {
30
+ readonly value: "Elementary";
31
+ readonly label: "Elementary School";
32
+ readonly uri: "uri://ed-fi.org/SchoolCategoryDescriptor#Elementary School";
33
+ }, {
34
+ readonly value: "HighSchool";
35
+ readonly label: "High School";
36
+ readonly uri: "uri://ed-fi.org/SchoolCategoryDescriptor#High School";
37
+ }, {
38
+ readonly value: "MiddleSchool";
39
+ readonly label: "Middle School";
40
+ readonly uri: "uri://ed-fi.org/SchoolCategoryDescriptor#Middle School";
41
+ }, {
42
+ readonly value: "SecondarySchool";
43
+ readonly label: "Secondary School";
44
+ readonly uri: "uri://ed-fi.org/SchoolCategoryDescriptor#Secondary School";
45
+ }, {
46
+ readonly value: "Ungraded";
47
+ readonly label: "Ungraded";
48
+ readonly uri: "uri://ed-fi.org/SchoolCategoryDescriptor#Ungraded";
49
+ }];
50
+ export declare const schoolCategoryDescriptorSchema: z.ZodEnum<["AllLevels", "Elementary", "HighSchool", "MiddleSchool", "SecondarySchool", "Ungraded"]>;
51
+ export type SchoolCategoryDescriptor = z.infer<typeof schoolCategoryDescriptorSchema>;
52
+ export declare const SCHOOL_TYPE_DESCRIPTORS: readonly [{
53
+ readonly value: "Regular";
54
+ readonly label: "Regular";
55
+ readonly uri: "uri://ed-fi.org/SchoolTypeDescriptor#Regular";
56
+ }, {
57
+ readonly value: "SpecialEducation";
58
+ readonly label: "Special Education";
59
+ readonly uri: "uri://ed-fi.org/SchoolTypeDescriptor#Special Education";
60
+ }, {
61
+ readonly value: "CareerAndTechnical";
62
+ readonly label: "Career and Technical Education";
63
+ readonly uri: "uri://ed-fi.org/SchoolTypeDescriptor#Career and Technical Education";
64
+ }, {
65
+ readonly value: "Alternative";
66
+ readonly label: "Alternative";
67
+ readonly uri: "uri://ed-fi.org/SchoolTypeDescriptor#Alternative";
68
+ }];
69
+ export declare const schoolTypeDescriptorSchema: z.ZodEnum<["Regular", "SpecialEducation", "CareerAndTechnical", "Alternative"]>;
70
+ export type SchoolTypeDescriptor = z.infer<typeof schoolTypeDescriptorSchema>;
71
+ export declare const LEA_CATEGORY_DESCRIPTORS: readonly [{
72
+ readonly value: "Independent";
73
+ readonly label: "Independent";
74
+ readonly uri: "uri://ed-fi.org/LocalEducationAgencyCategoryDescriptor#Independent";
75
+ }, {
76
+ readonly value: "CharterLEA";
77
+ readonly label: "Charter LEA";
78
+ readonly uri: "uri://ed-fi.org/LocalEducationAgencyCategoryDescriptor#Charter LEA";
79
+ }, {
80
+ readonly value: "Intermediate";
81
+ readonly label: "Intermediate";
82
+ readonly uri: "uri://ed-fi.org/LocalEducationAgencyCategoryDescriptor#Intermediate";
83
+ }, {
84
+ readonly value: "SupervisoryUnion";
85
+ readonly label: "Supervisory Union";
86
+ readonly uri: "uri://ed-fi.org/LocalEducationAgencyCategoryDescriptor#Supervisory Union";
87
+ }, {
88
+ readonly value: "Other";
89
+ readonly label: "Other";
90
+ readonly uri: "uri://ed-fi.org/LocalEducationAgencyCategoryDescriptor#Other";
91
+ }];
92
+ export declare const leaCategoryDescriptorSchema: z.ZodEnum<["Independent", "CharterLEA", "Intermediate", "SupervisoryUnion", "Other"]>;
93
+ export type LeaCategoryDescriptor = z.infer<typeof leaCategoryDescriptorSchema>;
94
+ export declare const OPERATIONAL_STATUS_DESCRIPTORS: readonly [{
95
+ readonly value: "Active";
96
+ readonly label: "Active";
97
+ readonly uri: "uri://ed-fi.org/OperationalStatusDescriptor#Active";
98
+ }, {
99
+ readonly value: "Added";
100
+ readonly label: "Added";
101
+ readonly uri: "uri://ed-fi.org/OperationalStatusDescriptor#Added";
102
+ }, {
103
+ readonly value: "ChangedAgency";
104
+ readonly label: "Changed Agency";
105
+ readonly uri: "uri://ed-fi.org/OperationalStatusDescriptor#Changed Agency";
106
+ }, {
107
+ readonly value: "Closed";
108
+ readonly label: "Closed";
109
+ readonly uri: "uri://ed-fi.org/OperationalStatusDescriptor#Closed";
110
+ }, {
111
+ readonly value: "Inactive";
112
+ readonly label: "Inactive";
113
+ readonly uri: "uri://ed-fi.org/OperationalStatusDescriptor#Inactive";
114
+ }, {
115
+ readonly value: "New";
116
+ readonly label: "New";
117
+ readonly uri: "uri://ed-fi.org/OperationalStatusDescriptor#New";
118
+ }, {
119
+ readonly value: "Reopened";
120
+ readonly label: "Reopened";
121
+ readonly uri: "uri://ed-fi.org/OperationalStatusDescriptor#Reopened";
122
+ }, {
123
+ readonly value: "Future";
124
+ readonly label: "Future";
125
+ readonly uri: "uri://ed-fi.org/OperationalStatusDescriptor#Future";
126
+ }];
127
+ export declare const operationalStatusDescriptorSchema: z.ZodEnum<["Active", "Added", "ChangedAgency", "Closed", "Inactive", "New", "Reopened", "Future"]>;
128
+ export type OperationalStatusDescriptor = z.infer<typeof operationalStatusDescriptorSchema>;
129
+ export declare const INSTITUTION_TELEPHONE_NUMBER_TYPE_DESCRIPTORS: readonly [{
130
+ readonly value: "Main";
131
+ readonly label: "Main";
132
+ readonly uri: "uri://ed-fi.org/InstitutionTelephoneNumberTypeDescriptor#Main";
133
+ }, {
134
+ readonly value: "Administrative";
135
+ readonly label: "Administrative";
136
+ readonly uri: "uri://ed-fi.org/InstitutionTelephoneNumberTypeDescriptor#Administrative";
137
+ }, {
138
+ readonly value: "Fax";
139
+ readonly label: "Fax";
140
+ readonly uri: "uri://ed-fi.org/InstitutionTelephoneNumberTypeDescriptor#Fax";
141
+ }, {
142
+ readonly value: "Attendance";
143
+ readonly label: "Attendance";
144
+ readonly uri: "uri://ed-fi.org/InstitutionTelephoneNumberTypeDescriptor#Attendance";
145
+ }];
146
+ export declare const institutionTelephoneNumberTypeDescriptorSchema: z.ZodEnum<["Main", "Administrative", "Fax", "Attendance"]>;
147
+ export type InstitutionTelephoneNumberTypeDescriptor = z.infer<typeof institutionTelephoneNumberTypeDescriptorSchema>;
148
+ export declare const EDUCATION_ORGANIZATION_IDENTIFICATION_SYSTEM_DESCRIPTORS: readonly [{
149
+ readonly value: "NCES";
150
+ readonly label: "NCES Identification Number";
151
+ readonly uri: "uri://ed-fi.org/EducationOrganizationIdentificationSystemDescriptor#NCES Identification Number";
152
+ }, {
153
+ readonly value: "SEA";
154
+ readonly label: "SEA Identification Number";
155
+ readonly uri: "uri://ed-fi.org/EducationOrganizationIdentificationSystemDescriptor#SEA";
156
+ }, {
157
+ readonly value: "DUNS";
158
+ readonly label: "DUNS Number";
159
+ readonly uri: "uri://ed-fi.org/EducationOrganizationIdentificationSystemDescriptor#DUNS";
160
+ }, {
161
+ readonly value: "Federal";
162
+ readonly label: "Federal Identification Number";
163
+ readonly uri: "uri://ed-fi.org/EducationOrganizationIdentificationSystemDescriptor#Federal";
164
+ }, {
165
+ readonly value: "Other";
166
+ readonly label: "Other";
167
+ readonly uri: "uri://ed-fi.org/EducationOrganizationIdentificationSystemDescriptor#Other";
168
+ }];
169
+ export declare const educationOrganizationIdentificationSystemDescriptorSchema: z.ZodEnum<["NCES", "SEA", "DUNS", "Federal", "Other"]>;
170
+ export type EducationOrganizationIdentificationSystemDescriptor = z.infer<typeof educationOrganizationIdentificationSystemDescriptorSchema>;
171
+ export declare const ADDRESS_TYPE_DESCRIPTORS: readonly [{
172
+ readonly value: "Physical";
173
+ readonly label: "Physical";
174
+ readonly uri: "uri://ed-fi.org/AddressTypeDescriptor#Physical";
175
+ }, {
176
+ readonly value: "Mailing";
177
+ readonly label: "Mailing";
178
+ readonly uri: "uri://ed-fi.org/AddressTypeDescriptor#Mailing";
179
+ }, {
180
+ readonly value: "Shipping";
181
+ readonly label: "Shipping";
182
+ readonly uri: "uri://ed-fi.org/AddressTypeDescriptor#Shipping";
183
+ }];
184
+ export declare const addressTypeDescriptorSchema: z.ZodEnum<["Physical", "Mailing", "Shipping"]>;
185
+ export type AddressTypeDescriptor = z.infer<typeof addressTypeDescriptorSchema>;
186
+ export declare const SCHOOL_GRADE_LEVEL_DESCRIPTORS: readonly [{
187
+ readonly value: "InfantToddler";
188
+ readonly label: "Infant/Toddler";
189
+ readonly uri: "uri://ed-fi.org/GradeLevelDescriptor#Infant/toddler";
190
+ }, {
191
+ readonly value: "Prenursery";
192
+ readonly label: "Prenursery";
193
+ readonly uri: "uri://ed-fi.org/GradeLevelDescriptor#Prenursery";
194
+ }, {
195
+ readonly value: "Nursery";
196
+ readonly label: "Nursery";
197
+ readonly uri: "uri://ed-fi.org/GradeLevelDescriptor#Nursery";
198
+ }, {
199
+ readonly value: "Prekindergarten";
200
+ readonly label: "Pre-Kindergarten";
201
+ readonly uri: "uri://ed-fi.org/GradeLevelDescriptor#Pre-Kindergarten";
202
+ }, {
203
+ readonly value: "TransitionalKindergarten";
204
+ readonly label: "Transitional Kindergarten";
205
+ readonly uri: "uri://ed-fi.org/GradeLevelDescriptor#Transitional Kindergarten";
206
+ }, {
207
+ readonly value: "Kindergarten";
208
+ readonly label: "Kindergarten";
209
+ readonly uri: "uri://ed-fi.org/GradeLevelDescriptor#Kindergarten";
210
+ }, {
211
+ readonly value: "FirstGrade";
212
+ readonly label: "First grade";
213
+ readonly uri: "uri://ed-fi.org/GradeLevelDescriptor#First grade";
214
+ }, {
215
+ readonly value: "SecondGrade";
216
+ readonly label: "Second grade";
217
+ readonly uri: "uri://ed-fi.org/GradeLevelDescriptor#Second grade";
218
+ }, {
219
+ readonly value: "ThirdGrade";
220
+ readonly label: "Third grade";
221
+ readonly uri: "uri://ed-fi.org/GradeLevelDescriptor#Third grade";
222
+ }, {
223
+ readonly value: "FourthGrade";
224
+ readonly label: "Fourth grade";
225
+ readonly uri: "uri://ed-fi.org/GradeLevelDescriptor#Fourth grade";
226
+ }, {
227
+ readonly value: "FifthGrade";
228
+ readonly label: "Fifth grade";
229
+ readonly uri: "uri://ed-fi.org/GradeLevelDescriptor#Fifth grade";
230
+ }, {
231
+ readonly value: "SixthGrade";
232
+ readonly label: "Sixth grade";
233
+ readonly uri: "uri://ed-fi.org/GradeLevelDescriptor#Sixth grade";
234
+ }, {
235
+ readonly value: "SeventhGrade";
236
+ readonly label: "Seventh grade";
237
+ readonly uri: "uri://ed-fi.org/GradeLevelDescriptor#Seventh grade";
238
+ }, {
239
+ readonly value: "EighthGrade";
240
+ readonly label: "Eighth grade";
241
+ readonly uri: "uri://ed-fi.org/GradeLevelDescriptor#Eighth grade";
242
+ }, {
243
+ readonly value: "NinthGrade";
244
+ readonly label: "Ninth grade";
245
+ readonly uri: "uri://ed-fi.org/GradeLevelDescriptor#Ninth grade";
246
+ }, {
247
+ readonly value: "TenthGrade";
248
+ readonly label: "Tenth grade";
249
+ readonly uri: "uri://ed-fi.org/GradeLevelDescriptor#Tenth grade";
250
+ }, {
251
+ readonly value: "EleventhGrade";
252
+ readonly label: "Eleventh grade";
253
+ readonly uri: "uri://ed-fi.org/GradeLevelDescriptor#Eleventh grade";
254
+ }, {
255
+ readonly value: "TwelfthGrade";
256
+ readonly label: "Twelfth grade";
257
+ readonly uri: "uri://ed-fi.org/GradeLevelDescriptor#Twelfth grade";
258
+ }, {
259
+ readonly value: "Postsecondary";
260
+ readonly label: "Postsecondary";
261
+ readonly uri: "uri://ed-fi.org/GradeLevelDescriptor#Postsecondary";
262
+ }, {
263
+ readonly value: "Ungraded";
264
+ readonly label: "Ungraded";
265
+ readonly uri: "uri://ed-fi.org/GradeLevelDescriptor#Ungraded";
266
+ }, {
267
+ readonly value: "Other";
268
+ readonly label: "Other";
269
+ readonly uri: "uri://ed-fi.org/GradeLevelDescriptor#Other";
270
+ }];
271
+ /**
272
+ * Ed-Fi grade levels for school grade spans (e.g., which grades a school serves).
273
+ * Distinct from credential.schema's gradeLevelDescriptorSchema which uses simplified values.
274
+ */
275
+ export declare const schoolGradeLevelDescriptorSchema: z.ZodEnum<["InfantToddler", "Prenursery", "Nursery", "Prekindergarten", "TransitionalKindergarten", "Kindergarten", "FirstGrade", "SecondGrade", "ThirdGrade", "FourthGrade", "FifthGrade", "SixthGrade", "SeventhGrade", "EighthGrade", "NinthGrade", "TenthGrade", "EleventhGrade", "TwelfthGrade", "Postsecondary", "Ungraded", "Other"]>;
276
+ export type SchoolGradeLevelDescriptor = z.infer<typeof schoolGradeLevelDescriptorSchema>;
277
+ export declare const CHARTER_STATUS_DESCRIPTORS: readonly [{
278
+ readonly value: "NotACharter";
279
+ readonly label: "Not a Charter School";
280
+ readonly uri: "uri://ed-fi.org/CharterStatusDescriptor#Not a Charter School";
281
+ }, {
282
+ readonly value: "SchoolCharter";
283
+ readonly label: "School Charter";
284
+ readonly uri: "uri://ed-fi.org/CharterStatusDescriptor#School Charter";
285
+ }, {
286
+ readonly value: "CollegeUniversityCharter";
287
+ readonly label: "College/University Charter";
288
+ readonly uri: "uri://ed-fi.org/CharterStatusDescriptor#College/University Charter";
289
+ }, {
290
+ readonly value: "OpenEnrollment";
291
+ readonly label: "Open Enrollment";
292
+ readonly uri: "uri://ed-fi.org/CharterStatusDescriptor#Open Enrollment";
293
+ }];
294
+ export declare const charterStatusDescriptorSchema: z.ZodEnum<["NotACharter", "SchoolCharter", "CollegeUniversityCharter", "OpenEnrollment"]>;
295
+ export type CharterStatusDescriptor = z.infer<typeof charterStatusDescriptorSchema>;
296
+ export declare const ADMINISTRATIVE_FUNDING_CONTROL_DESCRIPTORS: readonly [{
297
+ readonly value: "Public";
298
+ readonly label: "Public School";
299
+ readonly uri: "uri://ed-fi.org/AdministrativeFundingControlDescriptor#Public School";
300
+ }, {
301
+ readonly value: "Private";
302
+ readonly label: "Private School";
303
+ readonly uri: "uri://ed-fi.org/AdministrativeFundingControlDescriptor#Private School";
304
+ }, {
305
+ readonly value: "Other";
306
+ readonly label: "Other";
307
+ readonly uri: "uri://ed-fi.org/AdministrativeFundingControlDescriptor#Other";
308
+ }];
309
+ export declare const administrativeFundingControlDescriptorSchema: z.ZodEnum<["Public", "Private", "Other"]>;
310
+ export type AdministrativeFundingControlDescriptor = z.infer<typeof administrativeFundingControlDescriptorSchema>;
311
+ export declare const STATE_ABBREVIATION_DESCRIPTORS: readonly ["AL", "AK", "AZ", "AR", "CA", "CO", "CT", "DE", "FL", "GA", "HI", "ID", "IL", "IN", "IA", "KS", "KY", "LA", "ME", "MD", "MA", "MI", "MN", "MS", "MO", "MT", "NE", "NV", "NH", "NJ", "NM", "NY", "NC", "ND", "OH", "OK", "OR", "PA", "RI", "SC", "SD", "TN", "TX", "UT", "VT", "VA", "WA", "WV", "WI", "WY", "DC", "AS", "GU", "MP", "PR", "VI"];
312
+ export declare const stateAbbreviationDescriptorSchema: z.ZodEnum<["AL", "AK", "AZ", "AR", "CA", "CO", "CT", "DE", "FL", "GA", "HI", "ID", "IL", "IN", "IA", "KS", "KY", "LA", "ME", "MD", "MA", "MI", "MN", "MS", "MO", "MT", "NE", "NV", "NH", "NJ", "NM", "NY", "NC", "ND", "OH", "OK", "OR", "PA", "RI", "SC", "SD", "TN", "TX", "UT", "VT", "VA", "WA", "WV", "WI", "WY", "DC", "AS", "GU", "MP", "PR", "VI"]>;
313
+ export type StateAbbreviationDescriptor = z.infer<typeof stateAbbreviationDescriptorSchema>;
314
+ //# sourceMappingURL=education-org-descriptors.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"education-org-descriptors.d.ts","sourceRoot":"","sources":["../../../src/schemas/identity/education-org-descriptors.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,eAAO,MAAM,qBAAqB;;;;;;;;;;;;EAIhC,CAAC;AAEH,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAOpE,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;EAOO,CAAC;AAEhD,eAAO,MAAM,8BAA8B,qGAOzC,CAAC;AACH,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,8BAA8B,CAAC,CAAC;AAOtF,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;EAKW,CAAC;AAEhD,eAAO,MAAM,0BAA0B,iFAKrC,CAAC;AACH,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAC;AAO9E,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;EAMU,CAAC;AAEhD,eAAO,MAAM,2BAA2B,uFAMtC,CAAC;AACH,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAOhF,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EASI,CAAC;AAEhD,eAAO,MAAM,iCAAiC,oGAS5C,CAAC;AACH,MAAM,MAAM,2BAA2B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iCAAiC,CAAC,CAAC;AAO5F,eAAO,MAAM,6CAA6C;;;;;;;;;;;;;;;;EAKX,CAAC;AAEhD,eAAO,MAAM,8CAA8C,4DAKzD,CAAC;AACH,MAAM,MAAM,wCAAwC,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,8CAA8C,CAAC,CAAC;AAOtH,eAAO,MAAM,wDAAwD;;;;;;;;;;;;;;;;;;;;EAMtB,CAAC;AAEhD,eAAO,MAAM,yDAAyD,wDAMpE,CAAC;AACH,MAAM,MAAM,mDAAmD,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yDAAyD,CAAC,CAAC;AAO5I,eAAO,MAAM,wBAAwB;;;;;;;;;;;;EAIU,CAAC;AAEhD,eAAO,MAAM,2BAA2B,gDAItC,CAAC;AACH,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAOhF,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAsBI,CAAC;AAEhD;;;GAGG;AACH,eAAO,MAAM,gCAAgC,8UAsB3C,CAAC;AACH,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gCAAgC,CAAC,CAAC;AAO1F,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;EAKQ,CAAC;AAEhD,eAAO,MAAM,6BAA6B,2FAKxC,CAAC;AACH,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,6BAA6B,CAAC,CAAC;AAOpF,eAAO,MAAM,0CAA0C;;;;;;;;;;;;EAIR,CAAC;AAEhD,eAAO,MAAM,4CAA4C,2CAIvD,CAAC;AACH,MAAM,MAAM,sCAAsC,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4CAA4C,CAAC,CAAC;AAOlH,eAAO,MAAM,8BAA8B,2VAOjC,CAAC;AAEX,eAAO,MAAM,iCAAiC,6VAAyC,CAAC;AACxF,MAAM,MAAM,2BAA2B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iCAAiC,CAAC,CAAC"}