@aibrains/shared-types 0.1.1 → 0.3.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 (61) hide show
  1. package/dist/mappers/edfi/education-org.mapper.d.ts +156 -0
  2. package/dist/mappers/edfi/education-org.mapper.d.ts.map +1 -0
  3. package/dist/mappers/edfi/education-org.mapper.js +355 -0
  4. package/dist/mappers/edfi/education-org.mapper.js.map +1 -0
  5. package/dist/mappers/edfi/index.d.ts +1 -0
  6. package/dist/mappers/edfi/index.d.ts.map +1 -1
  7. package/dist/mappers/edfi/index.js +1 -0
  8. package/dist/mappers/edfi/index.js.map +1 -1
  9. package/dist/schemas/academics/assignment.schema.d.ts +10 -10
  10. package/dist/schemas/academics/course.schema.d.ts +10 -10
  11. package/dist/schemas/academics/grade.schema.d.ts +13 -13
  12. package/dist/schemas/enrollment/enrollment.schema.d.ts +49 -49
  13. package/dist/schemas/identity/academic-year.schema.d.ts +12 -12
  14. package/dist/schemas/identity/auth.schema.d.ts +10 -10
  15. package/dist/schemas/identity/credential.schema.d.ts +12 -12
  16. package/dist/schemas/identity/education-org-descriptors.d.ts +314 -0
  17. package/dist/schemas/identity/education-org-descriptors.d.ts.map +1 -0
  18. package/dist/schemas/identity/education-org-descriptors.js +245 -0
  19. package/dist/schemas/identity/education-org-descriptors.js.map +1 -0
  20. package/dist/schemas/identity/education-org-hierarchy.schema.d.ts +65 -0
  21. package/dist/schemas/identity/education-org-hierarchy.schema.d.ts.map +1 -0
  22. package/dist/schemas/identity/education-org-hierarchy.schema.js +46 -0
  23. package/dist/schemas/identity/education-org-hierarchy.schema.js.map +1 -0
  24. package/dist/schemas/identity/education-organization.schema.d.ts +127 -0
  25. package/dist/schemas/identity/education-organization.schema.d.ts.map +1 -0
  26. package/dist/schemas/identity/education-organization.schema.js +102 -0
  27. package/dist/schemas/identity/education-organization.schema.js.map +1 -0
  28. package/dist/schemas/identity/education-service-center.schema.d.ts +826 -0
  29. package/dist/schemas/identity/education-service-center.schema.d.ts.map +1 -0
  30. package/dist/schemas/identity/education-service-center.schema.js +85 -0
  31. package/dist/schemas/identity/education-service-center.schema.js.map +1 -0
  32. package/dist/schemas/identity/index.d.ts +8 -0
  33. package/dist/schemas/identity/index.d.ts.map +1 -1
  34. package/dist/schemas/identity/index.js +9 -0
  35. package/dist/schemas/identity/index.js.map +1 -1
  36. package/dist/schemas/identity/local-education-agency.schema.d.ts +888 -0
  37. package/dist/schemas/identity/local-education-agency.schema.d.ts.map +1 -0
  38. package/dist/schemas/identity/local-education-agency.schema.js +96 -0
  39. package/dist/schemas/identity/local-education-agency.schema.js.map +1 -0
  40. package/dist/schemas/identity/school.schema.d.ts +404 -0
  41. package/dist/schemas/identity/school.schema.d.ts.map +1 -1
  42. package/dist/schemas/identity/school.schema.js +35 -0
  43. package/dist/schemas/identity/school.schema.js.map +1 -1
  44. package/dist/schemas/identity/staff-assignment.schema.d.ts +240 -0
  45. package/dist/schemas/identity/staff-assignment.schema.d.ts.map +1 -0
  46. package/dist/schemas/identity/staff-assignment.schema.js +72 -0
  47. package/dist/schemas/identity/staff-assignment.schema.js.map +1 -0
  48. package/dist/schemas/identity/staff-employment-history.schema.d.ts +114 -0
  49. package/dist/schemas/identity/staff-employment-history.schema.d.ts.map +1 -0
  50. package/dist/schemas/identity/staff-employment-history.schema.js +31 -0
  51. package/dist/schemas/identity/staff-employment-history.schema.js.map +1 -0
  52. package/dist/schemas/identity/staff.schema.d.ts +482 -10
  53. package/dist/schemas/identity/staff.schema.d.ts.map +1 -1
  54. package/dist/schemas/identity/staff.schema.js +15 -1
  55. package/dist/schemas/identity/staff.schema.js.map +1 -1
  56. package/dist/schemas/identity/state-education-agency.schema.d.ts +511 -0
  57. package/dist/schemas/identity/state-education-agency.schema.d.ts.map +1 -0
  58. package/dist/schemas/identity/state-education-agency.schema.js +68 -0
  59. package/dist/schemas/identity/state-education-agency.schema.js.map +1 -0
  60. package/dist/schemas/identity/user.schema.d.ts +10 -10
  61. package/package.json +1 -1
@@ -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"}
@@ -0,0 +1,245 @@
1
+ "use strict";
2
+ /**
3
+ * Education Organization Descriptor Constants - Identity Service
4
+ *
5
+ * Ed-Fi descriptor constants for the Education Organization domain.
6
+ * All URIs follow the Ed-Fi pattern: uri://ed-fi.org/{Namespace}#{Value}
7
+ *
8
+ * Ed-Fi Data Standard v5:
9
+ * https://docs.ed-fi.org/reference/data-exchange/data-standard/model-reference/education-organization-domain/
10
+ */
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.stateAbbreviationDescriptorSchema = exports.STATE_ABBREVIATION_DESCRIPTORS = exports.administrativeFundingControlDescriptorSchema = exports.ADMINISTRATIVE_FUNDING_CONTROL_DESCRIPTORS = exports.charterStatusDescriptorSchema = exports.CHARTER_STATUS_DESCRIPTORS = exports.schoolGradeLevelDescriptorSchema = exports.SCHOOL_GRADE_LEVEL_DESCRIPTORS = exports.addressTypeDescriptorSchema = exports.ADDRESS_TYPE_DESCRIPTORS = exports.educationOrganizationIdentificationSystemDescriptorSchema = exports.EDUCATION_ORGANIZATION_IDENTIFICATION_SYSTEM_DESCRIPTORS = exports.institutionTelephoneNumberTypeDescriptorSchema = exports.INSTITUTION_TELEPHONE_NUMBER_TYPE_DESCRIPTORS = exports.operationalStatusDescriptorSchema = exports.OPERATIONAL_STATUS_DESCRIPTORS = exports.leaCategoryDescriptorSchema = exports.LEA_CATEGORY_DESCRIPTORS = exports.schoolTypeDescriptorSchema = exports.SCHOOL_TYPE_DESCRIPTORS = exports.schoolCategoryDescriptorSchema = exports.SCHOOL_CATEGORY_DESCRIPTORS = exports.descriptorEntrySchema = void 0;
13
+ const zod_1 = require("zod");
14
+ // ============================================
15
+ // Descriptor Shape
16
+ // ============================================
17
+ exports.descriptorEntrySchema = zod_1.z.object({
18
+ value: zod_1.z.string(),
19
+ label: zod_1.z.string(),
20
+ uri: zod_1.z.string(),
21
+ });
22
+ // ============================================
23
+ // School Category Descriptors
24
+ // Ed-Fi: SchoolCategoryDescriptor
25
+ // ============================================
26
+ exports.SCHOOL_CATEGORY_DESCRIPTORS = [
27
+ { value: 'AllLevels', label: 'All Levels', uri: 'uri://ed-fi.org/SchoolCategoryDescriptor#All Levels' },
28
+ { value: 'Elementary', label: 'Elementary School', uri: 'uri://ed-fi.org/SchoolCategoryDescriptor#Elementary School' },
29
+ { value: 'HighSchool', label: 'High School', uri: 'uri://ed-fi.org/SchoolCategoryDescriptor#High School' },
30
+ { value: 'MiddleSchool', label: 'Middle School', uri: 'uri://ed-fi.org/SchoolCategoryDescriptor#Middle School' },
31
+ { value: 'SecondarySchool', label: 'Secondary School', uri: 'uri://ed-fi.org/SchoolCategoryDescriptor#Secondary School' },
32
+ { value: 'Ungraded', label: 'Ungraded', uri: 'uri://ed-fi.org/SchoolCategoryDescriptor#Ungraded' },
33
+ ];
34
+ exports.schoolCategoryDescriptorSchema = zod_1.z.enum([
35
+ 'AllLevels',
36
+ 'Elementary',
37
+ 'HighSchool',
38
+ 'MiddleSchool',
39
+ 'SecondarySchool',
40
+ 'Ungraded',
41
+ ]);
42
+ // ============================================
43
+ // School Type Descriptors
44
+ // Ed-Fi: SchoolTypeDescriptor
45
+ // ============================================
46
+ exports.SCHOOL_TYPE_DESCRIPTORS = [
47
+ { value: 'Regular', label: 'Regular', uri: 'uri://ed-fi.org/SchoolTypeDescriptor#Regular' },
48
+ { value: 'SpecialEducation', label: 'Special Education', uri: 'uri://ed-fi.org/SchoolTypeDescriptor#Special Education' },
49
+ { value: 'CareerAndTechnical', label: 'Career and Technical Education', uri: 'uri://ed-fi.org/SchoolTypeDescriptor#Career and Technical Education' },
50
+ { value: 'Alternative', label: 'Alternative', uri: 'uri://ed-fi.org/SchoolTypeDescriptor#Alternative' },
51
+ ];
52
+ exports.schoolTypeDescriptorSchema = zod_1.z.enum([
53
+ 'Regular',
54
+ 'SpecialEducation',
55
+ 'CareerAndTechnical',
56
+ 'Alternative',
57
+ ]);
58
+ // ============================================
59
+ // LEA Category Descriptors
60
+ // Ed-Fi: LocalEducationAgencyCategoryDescriptor
61
+ // ============================================
62
+ exports.LEA_CATEGORY_DESCRIPTORS = [
63
+ { value: 'Independent', label: 'Independent', uri: 'uri://ed-fi.org/LocalEducationAgencyCategoryDescriptor#Independent' },
64
+ { value: 'CharterLEA', label: 'Charter LEA', uri: 'uri://ed-fi.org/LocalEducationAgencyCategoryDescriptor#Charter LEA' },
65
+ { value: 'Intermediate', label: 'Intermediate', uri: 'uri://ed-fi.org/LocalEducationAgencyCategoryDescriptor#Intermediate' },
66
+ { value: 'SupervisoryUnion', label: 'Supervisory Union', uri: 'uri://ed-fi.org/LocalEducationAgencyCategoryDescriptor#Supervisory Union' },
67
+ { value: 'Other', label: 'Other', uri: 'uri://ed-fi.org/LocalEducationAgencyCategoryDescriptor#Other' },
68
+ ];
69
+ exports.leaCategoryDescriptorSchema = zod_1.z.enum([
70
+ 'Independent',
71
+ 'CharterLEA',
72
+ 'Intermediate',
73
+ 'SupervisoryUnion',
74
+ 'Other',
75
+ ]);
76
+ // ============================================
77
+ // Operational Status Descriptors
78
+ // Ed-Fi: OperationalStatusDescriptor
79
+ // ============================================
80
+ exports.OPERATIONAL_STATUS_DESCRIPTORS = [
81
+ { value: 'Active', label: 'Active', uri: 'uri://ed-fi.org/OperationalStatusDescriptor#Active' },
82
+ { value: 'Added', label: 'Added', uri: 'uri://ed-fi.org/OperationalStatusDescriptor#Added' },
83
+ { value: 'ChangedAgency', label: 'Changed Agency', uri: 'uri://ed-fi.org/OperationalStatusDescriptor#Changed Agency' },
84
+ { value: 'Closed', label: 'Closed', uri: 'uri://ed-fi.org/OperationalStatusDescriptor#Closed' },
85
+ { value: 'Inactive', label: 'Inactive', uri: 'uri://ed-fi.org/OperationalStatusDescriptor#Inactive' },
86
+ { value: 'New', label: 'New', uri: 'uri://ed-fi.org/OperationalStatusDescriptor#New' },
87
+ { value: 'Reopened', label: 'Reopened', uri: 'uri://ed-fi.org/OperationalStatusDescriptor#Reopened' },
88
+ { value: 'Future', label: 'Future', uri: 'uri://ed-fi.org/OperationalStatusDescriptor#Future' },
89
+ ];
90
+ exports.operationalStatusDescriptorSchema = zod_1.z.enum([
91
+ 'Active',
92
+ 'Added',
93
+ 'ChangedAgency',
94
+ 'Closed',
95
+ 'Inactive',
96
+ 'New',
97
+ 'Reopened',
98
+ 'Future',
99
+ ]);
100
+ // ============================================
101
+ // Institution Telephone Number Type Descriptors
102
+ // Ed-Fi: InstitutionTelephoneNumberTypeDescriptor
103
+ // ============================================
104
+ exports.INSTITUTION_TELEPHONE_NUMBER_TYPE_DESCRIPTORS = [
105
+ { value: 'Main', label: 'Main', uri: 'uri://ed-fi.org/InstitutionTelephoneNumberTypeDescriptor#Main' },
106
+ { value: 'Administrative', label: 'Administrative', uri: 'uri://ed-fi.org/InstitutionTelephoneNumberTypeDescriptor#Administrative' },
107
+ { value: 'Fax', label: 'Fax', uri: 'uri://ed-fi.org/InstitutionTelephoneNumberTypeDescriptor#Fax' },
108
+ { value: 'Attendance', label: 'Attendance', uri: 'uri://ed-fi.org/InstitutionTelephoneNumberTypeDescriptor#Attendance' },
109
+ ];
110
+ exports.institutionTelephoneNumberTypeDescriptorSchema = zod_1.z.enum([
111
+ 'Main',
112
+ 'Administrative',
113
+ 'Fax',
114
+ 'Attendance',
115
+ ]);
116
+ // ============================================
117
+ // Education Organization Identification System Descriptors
118
+ // Ed-Fi: EducationOrganizationIdentificationSystemDescriptor
119
+ // ============================================
120
+ exports.EDUCATION_ORGANIZATION_IDENTIFICATION_SYSTEM_DESCRIPTORS = [
121
+ { value: 'NCES', label: 'NCES Identification Number', uri: 'uri://ed-fi.org/EducationOrganizationIdentificationSystemDescriptor#NCES Identification Number' },
122
+ { value: 'SEA', label: 'SEA Identification Number', uri: 'uri://ed-fi.org/EducationOrganizationIdentificationSystemDescriptor#SEA' },
123
+ { value: 'DUNS', label: 'DUNS Number', uri: 'uri://ed-fi.org/EducationOrganizationIdentificationSystemDescriptor#DUNS' },
124
+ { value: 'Federal', label: 'Federal Identification Number', uri: 'uri://ed-fi.org/EducationOrganizationIdentificationSystemDescriptor#Federal' },
125
+ { value: 'Other', label: 'Other', uri: 'uri://ed-fi.org/EducationOrganizationIdentificationSystemDescriptor#Other' },
126
+ ];
127
+ exports.educationOrganizationIdentificationSystemDescriptorSchema = zod_1.z.enum([
128
+ 'NCES',
129
+ 'SEA',
130
+ 'DUNS',
131
+ 'Federal',
132
+ 'Other',
133
+ ]);
134
+ // ============================================
135
+ // Address Type Descriptors
136
+ // Ed-Fi: AddressTypeDescriptor
137
+ // ============================================
138
+ exports.ADDRESS_TYPE_DESCRIPTORS = [
139
+ { value: 'Physical', label: 'Physical', uri: 'uri://ed-fi.org/AddressTypeDescriptor#Physical' },
140
+ { value: 'Mailing', label: 'Mailing', uri: 'uri://ed-fi.org/AddressTypeDescriptor#Mailing' },
141
+ { value: 'Shipping', label: 'Shipping', uri: 'uri://ed-fi.org/AddressTypeDescriptor#Shipping' },
142
+ ];
143
+ exports.addressTypeDescriptorSchema = zod_1.z.enum([
144
+ 'Physical',
145
+ 'Mailing',
146
+ 'Shipping',
147
+ ]);
148
+ // ============================================
149
+ // Grade Level Descriptors
150
+ // Ed-Fi: GradeLevelDescriptor
151
+ // ============================================
152
+ exports.SCHOOL_GRADE_LEVEL_DESCRIPTORS = [
153
+ { value: 'InfantToddler', label: 'Infant/Toddler', uri: 'uri://ed-fi.org/GradeLevelDescriptor#Infant/toddler' },
154
+ { value: 'Prenursery', label: 'Prenursery', uri: 'uri://ed-fi.org/GradeLevelDescriptor#Prenursery' },
155
+ { value: 'Nursery', label: 'Nursery', uri: 'uri://ed-fi.org/GradeLevelDescriptor#Nursery' },
156
+ { value: 'Prekindergarten', label: 'Pre-Kindergarten', uri: 'uri://ed-fi.org/GradeLevelDescriptor#Pre-Kindergarten' },
157
+ { value: 'TransitionalKindergarten', label: 'Transitional Kindergarten', uri: 'uri://ed-fi.org/GradeLevelDescriptor#Transitional Kindergarten' },
158
+ { value: 'Kindergarten', label: 'Kindergarten', uri: 'uri://ed-fi.org/GradeLevelDescriptor#Kindergarten' },
159
+ { value: 'FirstGrade', label: 'First grade', uri: 'uri://ed-fi.org/GradeLevelDescriptor#First grade' },
160
+ { value: 'SecondGrade', label: 'Second grade', uri: 'uri://ed-fi.org/GradeLevelDescriptor#Second grade' },
161
+ { value: 'ThirdGrade', label: 'Third grade', uri: 'uri://ed-fi.org/GradeLevelDescriptor#Third grade' },
162
+ { value: 'FourthGrade', label: 'Fourth grade', uri: 'uri://ed-fi.org/GradeLevelDescriptor#Fourth grade' },
163
+ { value: 'FifthGrade', label: 'Fifth grade', uri: 'uri://ed-fi.org/GradeLevelDescriptor#Fifth grade' },
164
+ { value: 'SixthGrade', label: 'Sixth grade', uri: 'uri://ed-fi.org/GradeLevelDescriptor#Sixth grade' },
165
+ { value: 'SeventhGrade', label: 'Seventh grade', uri: 'uri://ed-fi.org/GradeLevelDescriptor#Seventh grade' },
166
+ { value: 'EighthGrade', label: 'Eighth grade', uri: 'uri://ed-fi.org/GradeLevelDescriptor#Eighth grade' },
167
+ { value: 'NinthGrade', label: 'Ninth grade', uri: 'uri://ed-fi.org/GradeLevelDescriptor#Ninth grade' },
168
+ { value: 'TenthGrade', label: 'Tenth grade', uri: 'uri://ed-fi.org/GradeLevelDescriptor#Tenth grade' },
169
+ { value: 'EleventhGrade', label: 'Eleventh grade', uri: 'uri://ed-fi.org/GradeLevelDescriptor#Eleventh grade' },
170
+ { value: 'TwelfthGrade', label: 'Twelfth grade', uri: 'uri://ed-fi.org/GradeLevelDescriptor#Twelfth grade' },
171
+ { value: 'Postsecondary', label: 'Postsecondary', uri: 'uri://ed-fi.org/GradeLevelDescriptor#Postsecondary' },
172
+ { value: 'Ungraded', label: 'Ungraded', uri: 'uri://ed-fi.org/GradeLevelDescriptor#Ungraded' },
173
+ { value: 'Other', label: 'Other', uri: 'uri://ed-fi.org/GradeLevelDescriptor#Other' },
174
+ ];
175
+ /**
176
+ * Ed-Fi grade levels for school grade spans (e.g., which grades a school serves).
177
+ * Distinct from credential.schema's gradeLevelDescriptorSchema which uses simplified values.
178
+ */
179
+ exports.schoolGradeLevelDescriptorSchema = zod_1.z.enum([
180
+ 'InfantToddler',
181
+ 'Prenursery',
182
+ 'Nursery',
183
+ 'Prekindergarten',
184
+ 'TransitionalKindergarten',
185
+ 'Kindergarten',
186
+ 'FirstGrade',
187
+ 'SecondGrade',
188
+ 'ThirdGrade',
189
+ 'FourthGrade',
190
+ 'FifthGrade',
191
+ 'SixthGrade',
192
+ 'SeventhGrade',
193
+ 'EighthGrade',
194
+ 'NinthGrade',
195
+ 'TenthGrade',
196
+ 'EleventhGrade',
197
+ 'TwelfthGrade',
198
+ 'Postsecondary',
199
+ 'Ungraded',
200
+ 'Other',
201
+ ]);
202
+ // ============================================
203
+ // Charter Status Descriptors
204
+ // Ed-Fi: CharterStatusDescriptor
205
+ // ============================================
206
+ exports.CHARTER_STATUS_DESCRIPTORS = [
207
+ { value: 'NotACharter', label: 'Not a Charter School', uri: 'uri://ed-fi.org/CharterStatusDescriptor#Not a Charter School' },
208
+ { value: 'SchoolCharter', label: 'School Charter', uri: 'uri://ed-fi.org/CharterStatusDescriptor#School Charter' },
209
+ { value: 'CollegeUniversityCharter', label: 'College/University Charter', uri: 'uri://ed-fi.org/CharterStatusDescriptor#College/University Charter' },
210
+ { value: 'OpenEnrollment', label: 'Open Enrollment', uri: 'uri://ed-fi.org/CharterStatusDescriptor#Open Enrollment' },
211
+ ];
212
+ exports.charterStatusDescriptorSchema = zod_1.z.enum([
213
+ 'NotACharter',
214
+ 'SchoolCharter',
215
+ 'CollegeUniversityCharter',
216
+ 'OpenEnrollment',
217
+ ]);
218
+ // ============================================
219
+ // Administrative Funding Control Descriptors
220
+ // Ed-Fi: AdministrativeFundingControlDescriptor
221
+ // ============================================
222
+ exports.ADMINISTRATIVE_FUNDING_CONTROL_DESCRIPTORS = [
223
+ { value: 'Public', label: 'Public School', uri: 'uri://ed-fi.org/AdministrativeFundingControlDescriptor#Public School' },
224
+ { value: 'Private', label: 'Private School', uri: 'uri://ed-fi.org/AdministrativeFundingControlDescriptor#Private School' },
225
+ { value: 'Other', label: 'Other', uri: 'uri://ed-fi.org/AdministrativeFundingControlDescriptor#Other' },
226
+ ];
227
+ exports.administrativeFundingControlDescriptorSchema = zod_1.z.enum([
228
+ 'Public',
229
+ 'Private',
230
+ 'Other',
231
+ ]);
232
+ // ============================================
233
+ // State Abbreviation Descriptors
234
+ // Ed-Fi: StateAbbreviationDescriptor
235
+ // ============================================
236
+ exports.STATE_ABBREVIATION_DESCRIPTORS = [
237
+ 'AL', 'AK', 'AZ', 'AR', 'CA', 'CO', 'CT', 'DE', 'FL', 'GA',
238
+ 'HI', 'ID', 'IL', 'IN', 'IA', 'KS', 'KY', 'LA', 'ME', 'MD',
239
+ 'MA', 'MI', 'MN', 'MS', 'MO', 'MT', 'NE', 'NV', 'NH', 'NJ',
240
+ 'NM', 'NY', 'NC', 'ND', 'OH', 'OK', 'OR', 'PA', 'RI', 'SC',
241
+ 'SD', 'TN', 'TX', 'UT', 'VT', 'VA', 'WA', 'WV', 'WI', 'WY',
242
+ 'DC', 'AS', 'GU', 'MP', 'PR', 'VI',
243
+ ];
244
+ exports.stateAbbreviationDescriptorSchema = zod_1.z.enum(exports.STATE_ABBREVIATION_DESCRIPTORS);
245
+ //# sourceMappingURL=education-org-descriptors.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"education-org-descriptors.js","sourceRoot":"","sources":["../../../src/schemas/identity/education-org-descriptors.ts"],"names":[],"mappings":"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"}