@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
@@ -0,0 +1,888 @@
1
+ /**
2
+ * Local Education Agency (LEA) Schemas - Identity Service
3
+ *
4
+ * Zod schemas for Local Education Agency (school district) CRUD operations.
5
+ * LEAs sit below the SEA in the Ed-Fi hierarchy and contain schools.
6
+ *
7
+ * Ed-Fi: LocalEducationAgency
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 createLocalEducationAgencySchema: z.ZodObject<{
12
+ localEducationAgencyId: z.ZodNumber;
13
+ nameOfInstitution: z.ZodString;
14
+ shortNameOfInstitution: z.ZodOptional<z.ZodString>;
15
+ webSite: z.ZodOptional<z.ZodString>;
16
+ leaCategoryDescriptor: z.ZodEnum<["Independent", "CharterLEA", "Intermediate", "SupervisoryUnion", "Other"]>;
17
+ charterStatusDescriptor: z.ZodOptional<z.ZodEnum<["NotACharter", "SchoolCharter", "CollegeUniversityCharter", "OpenEnrollment"]>>;
18
+ operationalStatusDescriptor: z.ZodDefault<z.ZodEnum<["Active", "Added", "ChangedAgency", "Closed", "Inactive", "New", "Reopened", "Future"]>>;
19
+ stateEducationAgencyId: z.ZodOptional<z.ZodString>;
20
+ educationServiceCenterId: z.ZodOptional<z.ZodString>;
21
+ parentLocalEducationAgencyId: z.ZodOptional<z.ZodString>;
22
+ categories: z.ZodArray<z.ZodObject<{
23
+ educationOrganizationCategoryDescriptor: z.ZodString;
24
+ }, "strip", z.ZodTypeAny, {
25
+ educationOrganizationCategoryDescriptor: string;
26
+ }, {
27
+ educationOrganizationCategoryDescriptor: string;
28
+ }>, "many">;
29
+ addresses: z.ZodOptional<z.ZodArray<z.ZodObject<{
30
+ addressTypeDescriptor: z.ZodEnum<["Physical", "Mailing", "Shipping"]>;
31
+ streetNumberName: z.ZodString;
32
+ apartmentRoomSuiteNumber: z.ZodOptional<z.ZodString>;
33
+ city: z.ZodString;
34
+ stateAbbreviationDescriptor: 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"]>;
35
+ postalCode: z.ZodString;
36
+ nameOfCounty: z.ZodOptional<z.ZodString>;
37
+ countyFIPSCode: z.ZodOptional<z.ZodString>;
38
+ latitude: z.ZodOptional<z.ZodString>;
39
+ longitude: z.ZodOptional<z.ZodString>;
40
+ }, "strip", z.ZodTypeAny, {
41
+ city: string;
42
+ addressTypeDescriptor: "Physical" | "Mailing" | "Shipping";
43
+ streetNumberName: string;
44
+ stateAbbreviationDescriptor: "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";
45
+ postalCode: string;
46
+ apartmentRoomSuiteNumber?: string | undefined;
47
+ nameOfCounty?: string | undefined;
48
+ countyFIPSCode?: string | undefined;
49
+ latitude?: string | undefined;
50
+ longitude?: string | undefined;
51
+ }, {
52
+ city: string;
53
+ addressTypeDescriptor: "Physical" | "Mailing" | "Shipping";
54
+ streetNumberName: string;
55
+ stateAbbreviationDescriptor: "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";
56
+ postalCode: string;
57
+ apartmentRoomSuiteNumber?: string | undefined;
58
+ nameOfCounty?: string | undefined;
59
+ countyFIPSCode?: string | undefined;
60
+ latitude?: string | undefined;
61
+ longitude?: string | undefined;
62
+ }>, "many">>;
63
+ identificationCodes: z.ZodOptional<z.ZodArray<z.ZodObject<{
64
+ identificationCode: z.ZodString;
65
+ educationOrganizationIdentificationSystemDescriptor: z.ZodEnum<["NCES", "SEA", "DUNS", "Federal", "Other"]>;
66
+ }, "strip", z.ZodTypeAny, {
67
+ identificationCode: string;
68
+ educationOrganizationIdentificationSystemDescriptor: "Other" | "NCES" | "SEA" | "DUNS" | "Federal";
69
+ }, {
70
+ identificationCode: string;
71
+ educationOrganizationIdentificationSystemDescriptor: "Other" | "NCES" | "SEA" | "DUNS" | "Federal";
72
+ }>, "many">>;
73
+ telephones: z.ZodOptional<z.ZodArray<z.ZodObject<{
74
+ telephoneNumber: z.ZodString;
75
+ institutionTelephoneNumberTypeDescriptor: z.ZodEnum<["Main", "Administrative", "Fax", "Attendance"]>;
76
+ }, "strip", z.ZodTypeAny, {
77
+ telephoneNumber: string;
78
+ institutionTelephoneNumberTypeDescriptor: "Main" | "Administrative" | "Fax" | "Attendance";
79
+ }, {
80
+ telephoneNumber: string;
81
+ institutionTelephoneNumberTypeDescriptor: "Main" | "Administrative" | "Fax" | "Attendance";
82
+ }>, "many">>;
83
+ accountabilityRatings: z.ZodOptional<z.ZodArray<z.ZodObject<{
84
+ schoolYear: z.ZodNumber;
85
+ title: z.ZodString;
86
+ rating: z.ZodString;
87
+ ratingOrganization: z.ZodOptional<z.ZodString>;
88
+ ratingDate: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
89
+ }, "strip", z.ZodTypeAny, {
90
+ schoolYear: number;
91
+ title: string;
92
+ rating: string;
93
+ ratingOrganization?: string | undefined;
94
+ ratingDate?: string | undefined;
95
+ }, {
96
+ schoolYear: number;
97
+ title: string;
98
+ rating: string;
99
+ ratingOrganization?: string | undefined;
100
+ ratingDate?: string | undefined;
101
+ }>, "many">>;
102
+ }, "strip", z.ZodTypeAny, {
103
+ localEducationAgencyId: number;
104
+ categories: {
105
+ educationOrganizationCategoryDescriptor: string;
106
+ }[];
107
+ nameOfInstitution: string;
108
+ operationalStatusDescriptor: "Active" | "Added" | "ChangedAgency" | "Closed" | "Inactive" | "New" | "Reopened" | "Future";
109
+ leaCategoryDescriptor: "Independent" | "CharterLEA" | "Intermediate" | "SupervisoryUnion" | "Other";
110
+ charterStatusDescriptor?: "NotACharter" | "SchoolCharter" | "CollegeUniversityCharter" | "OpenEnrollment" | undefined;
111
+ identificationCodes?: {
112
+ identificationCode: string;
113
+ educationOrganizationIdentificationSystemDescriptor: "Other" | "NCES" | "SEA" | "DUNS" | "Federal";
114
+ }[] | undefined;
115
+ accountabilityRatings?: {
116
+ schoolYear: number;
117
+ title: string;
118
+ rating: string;
119
+ ratingOrganization?: string | undefined;
120
+ ratingDate?: string | undefined;
121
+ }[] | undefined;
122
+ addresses?: {
123
+ city: string;
124
+ addressTypeDescriptor: "Physical" | "Mailing" | "Shipping";
125
+ streetNumberName: string;
126
+ stateAbbreviationDescriptor: "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";
127
+ postalCode: string;
128
+ apartmentRoomSuiteNumber?: string | undefined;
129
+ nameOfCounty?: string | undefined;
130
+ countyFIPSCode?: string | undefined;
131
+ latitude?: string | undefined;
132
+ longitude?: string | undefined;
133
+ }[] | undefined;
134
+ telephones?: {
135
+ telephoneNumber: string;
136
+ institutionTelephoneNumberTypeDescriptor: "Main" | "Administrative" | "Fax" | "Attendance";
137
+ }[] | undefined;
138
+ stateEducationAgencyId?: string | undefined;
139
+ shortNameOfInstitution?: string | undefined;
140
+ webSite?: string | undefined;
141
+ educationServiceCenterId?: string | undefined;
142
+ parentLocalEducationAgencyId?: string | undefined;
143
+ }, {
144
+ localEducationAgencyId: number;
145
+ categories: {
146
+ educationOrganizationCategoryDescriptor: string;
147
+ }[];
148
+ nameOfInstitution: string;
149
+ leaCategoryDescriptor: "Independent" | "CharterLEA" | "Intermediate" | "SupervisoryUnion" | "Other";
150
+ charterStatusDescriptor?: "NotACharter" | "SchoolCharter" | "CollegeUniversityCharter" | "OpenEnrollment" | undefined;
151
+ identificationCodes?: {
152
+ identificationCode: string;
153
+ educationOrganizationIdentificationSystemDescriptor: "Other" | "NCES" | "SEA" | "DUNS" | "Federal";
154
+ }[] | undefined;
155
+ accountabilityRatings?: {
156
+ schoolYear: number;
157
+ title: string;
158
+ rating: string;
159
+ ratingOrganization?: string | undefined;
160
+ ratingDate?: string | undefined;
161
+ }[] | undefined;
162
+ addresses?: {
163
+ city: string;
164
+ addressTypeDescriptor: "Physical" | "Mailing" | "Shipping";
165
+ streetNumberName: string;
166
+ stateAbbreviationDescriptor: "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";
167
+ postalCode: string;
168
+ apartmentRoomSuiteNumber?: string | undefined;
169
+ nameOfCounty?: string | undefined;
170
+ countyFIPSCode?: string | undefined;
171
+ latitude?: string | undefined;
172
+ longitude?: string | undefined;
173
+ }[] | undefined;
174
+ telephones?: {
175
+ telephoneNumber: string;
176
+ institutionTelephoneNumberTypeDescriptor: "Main" | "Administrative" | "Fax" | "Attendance";
177
+ }[] | undefined;
178
+ stateEducationAgencyId?: string | undefined;
179
+ shortNameOfInstitution?: string | undefined;
180
+ webSite?: string | undefined;
181
+ operationalStatusDescriptor?: "Active" | "Added" | "ChangedAgency" | "Closed" | "Inactive" | "New" | "Reopened" | "Future" | undefined;
182
+ educationServiceCenterId?: string | undefined;
183
+ parentLocalEducationAgencyId?: string | undefined;
184
+ }>;
185
+ export type CreateLocalEducationAgencyDto = z.infer<typeof createLocalEducationAgencySchema>;
186
+ export declare const updateLocalEducationAgencySchema: z.ZodObject<Omit<{
187
+ localEducationAgencyId: z.ZodOptional<z.ZodNumber>;
188
+ nameOfInstitution: z.ZodOptional<z.ZodString>;
189
+ shortNameOfInstitution: z.ZodOptional<z.ZodOptional<z.ZodString>>;
190
+ webSite: z.ZodOptional<z.ZodOptional<z.ZodString>>;
191
+ leaCategoryDescriptor: z.ZodOptional<z.ZodEnum<["Independent", "CharterLEA", "Intermediate", "SupervisoryUnion", "Other"]>>;
192
+ charterStatusDescriptor: z.ZodOptional<z.ZodOptional<z.ZodEnum<["NotACharter", "SchoolCharter", "CollegeUniversityCharter", "OpenEnrollment"]>>>;
193
+ operationalStatusDescriptor: z.ZodOptional<z.ZodDefault<z.ZodEnum<["Active", "Added", "ChangedAgency", "Closed", "Inactive", "New", "Reopened", "Future"]>>>;
194
+ stateEducationAgencyId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
195
+ educationServiceCenterId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
196
+ parentLocalEducationAgencyId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
197
+ categories: z.ZodOptional<z.ZodArray<z.ZodObject<{
198
+ educationOrganizationCategoryDescriptor: z.ZodString;
199
+ }, "strip", z.ZodTypeAny, {
200
+ educationOrganizationCategoryDescriptor: string;
201
+ }, {
202
+ educationOrganizationCategoryDescriptor: string;
203
+ }>, "many">>;
204
+ addresses: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
205
+ addressTypeDescriptor: z.ZodEnum<["Physical", "Mailing", "Shipping"]>;
206
+ streetNumberName: z.ZodString;
207
+ apartmentRoomSuiteNumber: z.ZodOptional<z.ZodString>;
208
+ city: z.ZodString;
209
+ stateAbbreviationDescriptor: 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"]>;
210
+ postalCode: z.ZodString;
211
+ nameOfCounty: z.ZodOptional<z.ZodString>;
212
+ countyFIPSCode: z.ZodOptional<z.ZodString>;
213
+ latitude: z.ZodOptional<z.ZodString>;
214
+ longitude: z.ZodOptional<z.ZodString>;
215
+ }, "strip", z.ZodTypeAny, {
216
+ city: string;
217
+ addressTypeDescriptor: "Physical" | "Mailing" | "Shipping";
218
+ streetNumberName: string;
219
+ stateAbbreviationDescriptor: "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";
220
+ postalCode: string;
221
+ apartmentRoomSuiteNumber?: string | undefined;
222
+ nameOfCounty?: string | undefined;
223
+ countyFIPSCode?: string | undefined;
224
+ latitude?: string | undefined;
225
+ longitude?: string | undefined;
226
+ }, {
227
+ city: string;
228
+ addressTypeDescriptor: "Physical" | "Mailing" | "Shipping";
229
+ streetNumberName: string;
230
+ stateAbbreviationDescriptor: "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";
231
+ postalCode: string;
232
+ apartmentRoomSuiteNumber?: string | undefined;
233
+ nameOfCounty?: string | undefined;
234
+ countyFIPSCode?: string | undefined;
235
+ latitude?: string | undefined;
236
+ longitude?: string | undefined;
237
+ }>, "many">>>;
238
+ identificationCodes: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
239
+ identificationCode: z.ZodString;
240
+ educationOrganizationIdentificationSystemDescriptor: z.ZodEnum<["NCES", "SEA", "DUNS", "Federal", "Other"]>;
241
+ }, "strip", z.ZodTypeAny, {
242
+ identificationCode: string;
243
+ educationOrganizationIdentificationSystemDescriptor: "Other" | "NCES" | "SEA" | "DUNS" | "Federal";
244
+ }, {
245
+ identificationCode: string;
246
+ educationOrganizationIdentificationSystemDescriptor: "Other" | "NCES" | "SEA" | "DUNS" | "Federal";
247
+ }>, "many">>>;
248
+ telephones: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
249
+ telephoneNumber: z.ZodString;
250
+ institutionTelephoneNumberTypeDescriptor: z.ZodEnum<["Main", "Administrative", "Fax", "Attendance"]>;
251
+ }, "strip", z.ZodTypeAny, {
252
+ telephoneNumber: string;
253
+ institutionTelephoneNumberTypeDescriptor: "Main" | "Administrative" | "Fax" | "Attendance";
254
+ }, {
255
+ telephoneNumber: string;
256
+ institutionTelephoneNumberTypeDescriptor: "Main" | "Administrative" | "Fax" | "Attendance";
257
+ }>, "many">>>;
258
+ accountabilityRatings: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
259
+ schoolYear: z.ZodNumber;
260
+ title: z.ZodString;
261
+ rating: z.ZodString;
262
+ ratingOrganization: z.ZodOptional<z.ZodString>;
263
+ ratingDate: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
264
+ }, "strip", z.ZodTypeAny, {
265
+ schoolYear: number;
266
+ title: string;
267
+ rating: string;
268
+ ratingOrganization?: string | undefined;
269
+ ratingDate?: string | undefined;
270
+ }, {
271
+ schoolYear: number;
272
+ title: string;
273
+ rating: string;
274
+ ratingOrganization?: string | undefined;
275
+ ratingDate?: string | undefined;
276
+ }>, "many">>>;
277
+ }, "localEducationAgencyId">, "strip", z.ZodTypeAny, {
278
+ charterStatusDescriptor?: "NotACharter" | "SchoolCharter" | "CollegeUniversityCharter" | "OpenEnrollment" | undefined;
279
+ identificationCodes?: {
280
+ identificationCode: string;
281
+ educationOrganizationIdentificationSystemDescriptor: "Other" | "NCES" | "SEA" | "DUNS" | "Federal";
282
+ }[] | undefined;
283
+ accountabilityRatings?: {
284
+ schoolYear: number;
285
+ title: string;
286
+ rating: string;
287
+ ratingOrganization?: string | undefined;
288
+ ratingDate?: string | undefined;
289
+ }[] | undefined;
290
+ addresses?: {
291
+ city: string;
292
+ addressTypeDescriptor: "Physical" | "Mailing" | "Shipping";
293
+ streetNumberName: string;
294
+ stateAbbreviationDescriptor: "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";
295
+ postalCode: string;
296
+ apartmentRoomSuiteNumber?: string | undefined;
297
+ nameOfCounty?: string | undefined;
298
+ countyFIPSCode?: string | undefined;
299
+ latitude?: string | undefined;
300
+ longitude?: string | undefined;
301
+ }[] | undefined;
302
+ telephones?: {
303
+ telephoneNumber: string;
304
+ institutionTelephoneNumberTypeDescriptor: "Main" | "Administrative" | "Fax" | "Attendance";
305
+ }[] | undefined;
306
+ categories?: {
307
+ educationOrganizationCategoryDescriptor: string;
308
+ }[] | undefined;
309
+ stateEducationAgencyId?: string | undefined;
310
+ nameOfInstitution?: string | undefined;
311
+ shortNameOfInstitution?: string | undefined;
312
+ webSite?: string | undefined;
313
+ operationalStatusDescriptor?: "Active" | "Added" | "ChangedAgency" | "Closed" | "Inactive" | "New" | "Reopened" | "Future" | undefined;
314
+ leaCategoryDescriptor?: "Independent" | "CharterLEA" | "Intermediate" | "SupervisoryUnion" | "Other" | undefined;
315
+ educationServiceCenterId?: string | undefined;
316
+ parentLocalEducationAgencyId?: string | undefined;
317
+ }, {
318
+ charterStatusDescriptor?: "NotACharter" | "SchoolCharter" | "CollegeUniversityCharter" | "OpenEnrollment" | undefined;
319
+ identificationCodes?: {
320
+ identificationCode: string;
321
+ educationOrganizationIdentificationSystemDescriptor: "Other" | "NCES" | "SEA" | "DUNS" | "Federal";
322
+ }[] | undefined;
323
+ accountabilityRatings?: {
324
+ schoolYear: number;
325
+ title: string;
326
+ rating: string;
327
+ ratingOrganization?: string | undefined;
328
+ ratingDate?: string | undefined;
329
+ }[] | undefined;
330
+ addresses?: {
331
+ city: string;
332
+ addressTypeDescriptor: "Physical" | "Mailing" | "Shipping";
333
+ streetNumberName: string;
334
+ stateAbbreviationDescriptor: "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";
335
+ postalCode: string;
336
+ apartmentRoomSuiteNumber?: string | undefined;
337
+ nameOfCounty?: string | undefined;
338
+ countyFIPSCode?: string | undefined;
339
+ latitude?: string | undefined;
340
+ longitude?: string | undefined;
341
+ }[] | undefined;
342
+ telephones?: {
343
+ telephoneNumber: string;
344
+ institutionTelephoneNumberTypeDescriptor: "Main" | "Administrative" | "Fax" | "Attendance";
345
+ }[] | undefined;
346
+ categories?: {
347
+ educationOrganizationCategoryDescriptor: string;
348
+ }[] | undefined;
349
+ stateEducationAgencyId?: string | undefined;
350
+ nameOfInstitution?: string | undefined;
351
+ shortNameOfInstitution?: string | undefined;
352
+ webSite?: string | undefined;
353
+ operationalStatusDescriptor?: "Active" | "Added" | "ChangedAgency" | "Closed" | "Inactive" | "New" | "Reopened" | "Future" | undefined;
354
+ leaCategoryDescriptor?: "Independent" | "CharterLEA" | "Intermediate" | "SupervisoryUnion" | "Other" | undefined;
355
+ educationServiceCenterId?: string | undefined;
356
+ parentLocalEducationAgencyId?: string | undefined;
357
+ }>;
358
+ export type UpdateLocalEducationAgencyDto = z.infer<typeof updateLocalEducationAgencySchema>;
359
+ export declare const leaResponseSchema: z.ZodObject<{
360
+ id: z.ZodString;
361
+ localEducationAgencyId: z.ZodNumber;
362
+ tenantId: z.ZodString;
363
+ nameOfInstitution: z.ZodString;
364
+ shortNameOfInstitution: z.ZodOptional<z.ZodString>;
365
+ webSite: z.ZodOptional<z.ZodString>;
366
+ leaCategoryDescriptor: z.ZodEnum<["Independent", "CharterLEA", "Intermediate", "SupervisoryUnion", "Other"]>;
367
+ charterStatusDescriptor: z.ZodOptional<z.ZodEnum<["NotACharter", "SchoolCharter", "CollegeUniversityCharter", "OpenEnrollment"]>>;
368
+ operationalStatusDescriptor: z.ZodEnum<["Active", "Added", "ChangedAgency", "Closed", "Inactive", "New", "Reopened", "Future"]>;
369
+ stateEducationAgencyId: z.ZodOptional<z.ZodString>;
370
+ educationServiceCenterId: z.ZodOptional<z.ZodString>;
371
+ parentLocalEducationAgencyId: z.ZodOptional<z.ZodString>;
372
+ categories: z.ZodArray<z.ZodObject<{
373
+ educationOrganizationCategoryDescriptor: z.ZodString;
374
+ }, "strip", z.ZodTypeAny, {
375
+ educationOrganizationCategoryDescriptor: string;
376
+ }, {
377
+ educationOrganizationCategoryDescriptor: string;
378
+ }>, "many">;
379
+ addresses: z.ZodOptional<z.ZodArray<z.ZodObject<{
380
+ addressTypeDescriptor: z.ZodEnum<["Physical", "Mailing", "Shipping"]>;
381
+ streetNumberName: z.ZodString;
382
+ apartmentRoomSuiteNumber: z.ZodOptional<z.ZodString>;
383
+ city: z.ZodString;
384
+ stateAbbreviationDescriptor: 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"]>;
385
+ postalCode: z.ZodString;
386
+ nameOfCounty: z.ZodOptional<z.ZodString>;
387
+ countyFIPSCode: z.ZodOptional<z.ZodString>;
388
+ latitude: z.ZodOptional<z.ZodString>;
389
+ longitude: z.ZodOptional<z.ZodString>;
390
+ }, "strip", z.ZodTypeAny, {
391
+ city: string;
392
+ addressTypeDescriptor: "Physical" | "Mailing" | "Shipping";
393
+ streetNumberName: string;
394
+ stateAbbreviationDescriptor: "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";
395
+ postalCode: string;
396
+ apartmentRoomSuiteNumber?: string | undefined;
397
+ nameOfCounty?: string | undefined;
398
+ countyFIPSCode?: string | undefined;
399
+ latitude?: string | undefined;
400
+ longitude?: string | undefined;
401
+ }, {
402
+ city: string;
403
+ addressTypeDescriptor: "Physical" | "Mailing" | "Shipping";
404
+ streetNumberName: string;
405
+ stateAbbreviationDescriptor: "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";
406
+ postalCode: string;
407
+ apartmentRoomSuiteNumber?: string | undefined;
408
+ nameOfCounty?: string | undefined;
409
+ countyFIPSCode?: string | undefined;
410
+ latitude?: string | undefined;
411
+ longitude?: string | undefined;
412
+ }>, "many">>;
413
+ identificationCodes: z.ZodOptional<z.ZodArray<z.ZodObject<{
414
+ identificationCode: z.ZodString;
415
+ educationOrganizationIdentificationSystemDescriptor: z.ZodEnum<["NCES", "SEA", "DUNS", "Federal", "Other"]>;
416
+ }, "strip", z.ZodTypeAny, {
417
+ identificationCode: string;
418
+ educationOrganizationIdentificationSystemDescriptor: "Other" | "NCES" | "SEA" | "DUNS" | "Federal";
419
+ }, {
420
+ identificationCode: string;
421
+ educationOrganizationIdentificationSystemDescriptor: "Other" | "NCES" | "SEA" | "DUNS" | "Federal";
422
+ }>, "many">>;
423
+ telephones: z.ZodOptional<z.ZodArray<z.ZodObject<{
424
+ telephoneNumber: z.ZodString;
425
+ institutionTelephoneNumberTypeDescriptor: z.ZodEnum<["Main", "Administrative", "Fax", "Attendance"]>;
426
+ }, "strip", z.ZodTypeAny, {
427
+ telephoneNumber: string;
428
+ institutionTelephoneNumberTypeDescriptor: "Main" | "Administrative" | "Fax" | "Attendance";
429
+ }, {
430
+ telephoneNumber: string;
431
+ institutionTelephoneNumberTypeDescriptor: "Main" | "Administrative" | "Fax" | "Attendance";
432
+ }>, "many">>;
433
+ accountabilityRatings: z.ZodOptional<z.ZodArray<z.ZodObject<{
434
+ schoolYear: z.ZodNumber;
435
+ title: z.ZodString;
436
+ rating: z.ZodString;
437
+ ratingOrganization: z.ZodOptional<z.ZodString>;
438
+ ratingDate: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
439
+ }, "strip", z.ZodTypeAny, {
440
+ schoolYear: number;
441
+ title: string;
442
+ rating: string;
443
+ ratingOrganization?: string | undefined;
444
+ ratingDate?: string | undefined;
445
+ }, {
446
+ schoolYear: number;
447
+ title: string;
448
+ rating: string;
449
+ ratingOrganization?: string | undefined;
450
+ ratingDate?: string | undefined;
451
+ }>, "many">>;
452
+ createdAt: z.ZodString;
453
+ updatedAt: z.ZodString;
454
+ createdBy: z.ZodString;
455
+ updatedBy: z.ZodString;
456
+ version: z.ZodNumber;
457
+ }, "strip", z.ZodTypeAny, {
458
+ tenantId: string;
459
+ createdAt: string;
460
+ createdBy: string;
461
+ updatedAt: string;
462
+ updatedBy: string;
463
+ version: number;
464
+ localEducationAgencyId: number;
465
+ categories: {
466
+ educationOrganizationCategoryDescriptor: string;
467
+ }[];
468
+ nameOfInstitution: string;
469
+ operationalStatusDescriptor: "Active" | "Added" | "ChangedAgency" | "Closed" | "Inactive" | "New" | "Reopened" | "Future";
470
+ id: string;
471
+ leaCategoryDescriptor: "Independent" | "CharterLEA" | "Intermediate" | "SupervisoryUnion" | "Other";
472
+ charterStatusDescriptor?: "NotACharter" | "SchoolCharter" | "CollegeUniversityCharter" | "OpenEnrollment" | undefined;
473
+ identificationCodes?: {
474
+ identificationCode: string;
475
+ educationOrganizationIdentificationSystemDescriptor: "Other" | "NCES" | "SEA" | "DUNS" | "Federal";
476
+ }[] | undefined;
477
+ accountabilityRatings?: {
478
+ schoolYear: number;
479
+ title: string;
480
+ rating: string;
481
+ ratingOrganization?: string | undefined;
482
+ ratingDate?: string | undefined;
483
+ }[] | undefined;
484
+ addresses?: {
485
+ city: string;
486
+ addressTypeDescriptor: "Physical" | "Mailing" | "Shipping";
487
+ streetNumberName: string;
488
+ stateAbbreviationDescriptor: "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";
489
+ postalCode: string;
490
+ apartmentRoomSuiteNumber?: string | undefined;
491
+ nameOfCounty?: string | undefined;
492
+ countyFIPSCode?: string | undefined;
493
+ latitude?: string | undefined;
494
+ longitude?: string | undefined;
495
+ }[] | undefined;
496
+ telephones?: {
497
+ telephoneNumber: string;
498
+ institutionTelephoneNumberTypeDescriptor: "Main" | "Administrative" | "Fax" | "Attendance";
499
+ }[] | undefined;
500
+ stateEducationAgencyId?: string | undefined;
501
+ shortNameOfInstitution?: string | undefined;
502
+ webSite?: string | undefined;
503
+ educationServiceCenterId?: string | undefined;
504
+ parentLocalEducationAgencyId?: string | undefined;
505
+ }, {
506
+ tenantId: string;
507
+ createdAt: string;
508
+ createdBy: string;
509
+ updatedAt: string;
510
+ updatedBy: string;
511
+ version: number;
512
+ localEducationAgencyId: number;
513
+ categories: {
514
+ educationOrganizationCategoryDescriptor: string;
515
+ }[];
516
+ nameOfInstitution: string;
517
+ operationalStatusDescriptor: "Active" | "Added" | "ChangedAgency" | "Closed" | "Inactive" | "New" | "Reopened" | "Future";
518
+ id: string;
519
+ leaCategoryDescriptor: "Independent" | "CharterLEA" | "Intermediate" | "SupervisoryUnion" | "Other";
520
+ charterStatusDescriptor?: "NotACharter" | "SchoolCharter" | "CollegeUniversityCharter" | "OpenEnrollment" | undefined;
521
+ identificationCodes?: {
522
+ identificationCode: string;
523
+ educationOrganizationIdentificationSystemDescriptor: "Other" | "NCES" | "SEA" | "DUNS" | "Federal";
524
+ }[] | undefined;
525
+ accountabilityRatings?: {
526
+ schoolYear: number;
527
+ title: string;
528
+ rating: string;
529
+ ratingOrganization?: string | undefined;
530
+ ratingDate?: string | undefined;
531
+ }[] | undefined;
532
+ addresses?: {
533
+ city: string;
534
+ addressTypeDescriptor: "Physical" | "Mailing" | "Shipping";
535
+ streetNumberName: string;
536
+ stateAbbreviationDescriptor: "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";
537
+ postalCode: string;
538
+ apartmentRoomSuiteNumber?: string | undefined;
539
+ nameOfCounty?: string | undefined;
540
+ countyFIPSCode?: string | undefined;
541
+ latitude?: string | undefined;
542
+ longitude?: string | undefined;
543
+ }[] | undefined;
544
+ telephones?: {
545
+ telephoneNumber: string;
546
+ institutionTelephoneNumberTypeDescriptor: "Main" | "Administrative" | "Fax" | "Attendance";
547
+ }[] | undefined;
548
+ stateEducationAgencyId?: string | undefined;
549
+ shortNameOfInstitution?: string | undefined;
550
+ webSite?: string | undefined;
551
+ educationServiceCenterId?: string | undefined;
552
+ parentLocalEducationAgencyId?: string | undefined;
553
+ }>;
554
+ export type LeaResponseDto = z.infer<typeof leaResponseSchema>;
555
+ export declare const leaListResponseSchema: z.ZodObject<{
556
+ items: z.ZodArray<z.ZodObject<{
557
+ id: z.ZodString;
558
+ localEducationAgencyId: z.ZodNumber;
559
+ tenantId: z.ZodString;
560
+ nameOfInstitution: z.ZodString;
561
+ shortNameOfInstitution: z.ZodOptional<z.ZodString>;
562
+ webSite: z.ZodOptional<z.ZodString>;
563
+ leaCategoryDescriptor: z.ZodEnum<["Independent", "CharterLEA", "Intermediate", "SupervisoryUnion", "Other"]>;
564
+ charterStatusDescriptor: z.ZodOptional<z.ZodEnum<["NotACharter", "SchoolCharter", "CollegeUniversityCharter", "OpenEnrollment"]>>;
565
+ operationalStatusDescriptor: z.ZodEnum<["Active", "Added", "ChangedAgency", "Closed", "Inactive", "New", "Reopened", "Future"]>;
566
+ stateEducationAgencyId: z.ZodOptional<z.ZodString>;
567
+ educationServiceCenterId: z.ZodOptional<z.ZodString>;
568
+ parentLocalEducationAgencyId: z.ZodOptional<z.ZodString>;
569
+ categories: z.ZodArray<z.ZodObject<{
570
+ educationOrganizationCategoryDescriptor: z.ZodString;
571
+ }, "strip", z.ZodTypeAny, {
572
+ educationOrganizationCategoryDescriptor: string;
573
+ }, {
574
+ educationOrganizationCategoryDescriptor: string;
575
+ }>, "many">;
576
+ addresses: z.ZodOptional<z.ZodArray<z.ZodObject<{
577
+ addressTypeDescriptor: z.ZodEnum<["Physical", "Mailing", "Shipping"]>;
578
+ streetNumberName: z.ZodString;
579
+ apartmentRoomSuiteNumber: z.ZodOptional<z.ZodString>;
580
+ city: z.ZodString;
581
+ stateAbbreviationDescriptor: 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"]>;
582
+ postalCode: z.ZodString;
583
+ nameOfCounty: z.ZodOptional<z.ZodString>;
584
+ countyFIPSCode: z.ZodOptional<z.ZodString>;
585
+ latitude: z.ZodOptional<z.ZodString>;
586
+ longitude: z.ZodOptional<z.ZodString>;
587
+ }, "strip", z.ZodTypeAny, {
588
+ city: string;
589
+ addressTypeDescriptor: "Physical" | "Mailing" | "Shipping";
590
+ streetNumberName: string;
591
+ stateAbbreviationDescriptor: "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";
592
+ postalCode: string;
593
+ apartmentRoomSuiteNumber?: string | undefined;
594
+ nameOfCounty?: string | undefined;
595
+ countyFIPSCode?: string | undefined;
596
+ latitude?: string | undefined;
597
+ longitude?: string | undefined;
598
+ }, {
599
+ city: string;
600
+ addressTypeDescriptor: "Physical" | "Mailing" | "Shipping";
601
+ streetNumberName: string;
602
+ stateAbbreviationDescriptor: "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";
603
+ postalCode: string;
604
+ apartmentRoomSuiteNumber?: string | undefined;
605
+ nameOfCounty?: string | undefined;
606
+ countyFIPSCode?: string | undefined;
607
+ latitude?: string | undefined;
608
+ longitude?: string | undefined;
609
+ }>, "many">>;
610
+ identificationCodes: z.ZodOptional<z.ZodArray<z.ZodObject<{
611
+ identificationCode: z.ZodString;
612
+ educationOrganizationIdentificationSystemDescriptor: z.ZodEnum<["NCES", "SEA", "DUNS", "Federal", "Other"]>;
613
+ }, "strip", z.ZodTypeAny, {
614
+ identificationCode: string;
615
+ educationOrganizationIdentificationSystemDescriptor: "Other" | "NCES" | "SEA" | "DUNS" | "Federal";
616
+ }, {
617
+ identificationCode: string;
618
+ educationOrganizationIdentificationSystemDescriptor: "Other" | "NCES" | "SEA" | "DUNS" | "Federal";
619
+ }>, "many">>;
620
+ telephones: z.ZodOptional<z.ZodArray<z.ZodObject<{
621
+ telephoneNumber: z.ZodString;
622
+ institutionTelephoneNumberTypeDescriptor: z.ZodEnum<["Main", "Administrative", "Fax", "Attendance"]>;
623
+ }, "strip", z.ZodTypeAny, {
624
+ telephoneNumber: string;
625
+ institutionTelephoneNumberTypeDescriptor: "Main" | "Administrative" | "Fax" | "Attendance";
626
+ }, {
627
+ telephoneNumber: string;
628
+ institutionTelephoneNumberTypeDescriptor: "Main" | "Administrative" | "Fax" | "Attendance";
629
+ }>, "many">>;
630
+ accountabilityRatings: z.ZodOptional<z.ZodArray<z.ZodObject<{
631
+ schoolYear: z.ZodNumber;
632
+ title: z.ZodString;
633
+ rating: z.ZodString;
634
+ ratingOrganization: z.ZodOptional<z.ZodString>;
635
+ ratingDate: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
636
+ }, "strip", z.ZodTypeAny, {
637
+ schoolYear: number;
638
+ title: string;
639
+ rating: string;
640
+ ratingOrganization?: string | undefined;
641
+ ratingDate?: string | undefined;
642
+ }, {
643
+ schoolYear: number;
644
+ title: string;
645
+ rating: string;
646
+ ratingOrganization?: string | undefined;
647
+ ratingDate?: string | undefined;
648
+ }>, "many">>;
649
+ createdAt: z.ZodString;
650
+ updatedAt: z.ZodString;
651
+ createdBy: z.ZodString;
652
+ updatedBy: z.ZodString;
653
+ version: z.ZodNumber;
654
+ }, "strip", z.ZodTypeAny, {
655
+ tenantId: string;
656
+ createdAt: string;
657
+ createdBy: string;
658
+ updatedAt: string;
659
+ updatedBy: string;
660
+ version: number;
661
+ localEducationAgencyId: number;
662
+ categories: {
663
+ educationOrganizationCategoryDescriptor: string;
664
+ }[];
665
+ nameOfInstitution: string;
666
+ operationalStatusDescriptor: "Active" | "Added" | "ChangedAgency" | "Closed" | "Inactive" | "New" | "Reopened" | "Future";
667
+ id: string;
668
+ leaCategoryDescriptor: "Independent" | "CharterLEA" | "Intermediate" | "SupervisoryUnion" | "Other";
669
+ charterStatusDescriptor?: "NotACharter" | "SchoolCharter" | "CollegeUniversityCharter" | "OpenEnrollment" | undefined;
670
+ identificationCodes?: {
671
+ identificationCode: string;
672
+ educationOrganizationIdentificationSystemDescriptor: "Other" | "NCES" | "SEA" | "DUNS" | "Federal";
673
+ }[] | undefined;
674
+ accountabilityRatings?: {
675
+ schoolYear: number;
676
+ title: string;
677
+ rating: string;
678
+ ratingOrganization?: string | undefined;
679
+ ratingDate?: string | undefined;
680
+ }[] | undefined;
681
+ addresses?: {
682
+ city: string;
683
+ addressTypeDescriptor: "Physical" | "Mailing" | "Shipping";
684
+ streetNumberName: string;
685
+ stateAbbreviationDescriptor: "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";
686
+ postalCode: string;
687
+ apartmentRoomSuiteNumber?: string | undefined;
688
+ nameOfCounty?: string | undefined;
689
+ countyFIPSCode?: string | undefined;
690
+ latitude?: string | undefined;
691
+ longitude?: string | undefined;
692
+ }[] | undefined;
693
+ telephones?: {
694
+ telephoneNumber: string;
695
+ institutionTelephoneNumberTypeDescriptor: "Main" | "Administrative" | "Fax" | "Attendance";
696
+ }[] | undefined;
697
+ stateEducationAgencyId?: string | undefined;
698
+ shortNameOfInstitution?: string | undefined;
699
+ webSite?: string | undefined;
700
+ educationServiceCenterId?: string | undefined;
701
+ parentLocalEducationAgencyId?: string | undefined;
702
+ }, {
703
+ tenantId: string;
704
+ createdAt: string;
705
+ createdBy: string;
706
+ updatedAt: string;
707
+ updatedBy: string;
708
+ version: number;
709
+ localEducationAgencyId: number;
710
+ categories: {
711
+ educationOrganizationCategoryDescriptor: string;
712
+ }[];
713
+ nameOfInstitution: string;
714
+ operationalStatusDescriptor: "Active" | "Added" | "ChangedAgency" | "Closed" | "Inactive" | "New" | "Reopened" | "Future";
715
+ id: string;
716
+ leaCategoryDescriptor: "Independent" | "CharterLEA" | "Intermediate" | "SupervisoryUnion" | "Other";
717
+ charterStatusDescriptor?: "NotACharter" | "SchoolCharter" | "CollegeUniversityCharter" | "OpenEnrollment" | undefined;
718
+ identificationCodes?: {
719
+ identificationCode: string;
720
+ educationOrganizationIdentificationSystemDescriptor: "Other" | "NCES" | "SEA" | "DUNS" | "Federal";
721
+ }[] | undefined;
722
+ accountabilityRatings?: {
723
+ schoolYear: number;
724
+ title: string;
725
+ rating: string;
726
+ ratingOrganization?: string | undefined;
727
+ ratingDate?: string | undefined;
728
+ }[] | undefined;
729
+ addresses?: {
730
+ city: string;
731
+ addressTypeDescriptor: "Physical" | "Mailing" | "Shipping";
732
+ streetNumberName: string;
733
+ stateAbbreviationDescriptor: "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";
734
+ postalCode: string;
735
+ apartmentRoomSuiteNumber?: string | undefined;
736
+ nameOfCounty?: string | undefined;
737
+ countyFIPSCode?: string | undefined;
738
+ latitude?: string | undefined;
739
+ longitude?: string | undefined;
740
+ }[] | undefined;
741
+ telephones?: {
742
+ telephoneNumber: string;
743
+ institutionTelephoneNumberTypeDescriptor: "Main" | "Administrative" | "Fax" | "Attendance";
744
+ }[] | undefined;
745
+ stateEducationAgencyId?: string | undefined;
746
+ shortNameOfInstitution?: string | undefined;
747
+ webSite?: string | undefined;
748
+ educationServiceCenterId?: string | undefined;
749
+ parentLocalEducationAgencyId?: string | undefined;
750
+ }>, "many">;
751
+ lastEvaluatedKey: z.ZodOptional<z.ZodString>;
752
+ hasMore: z.ZodBoolean;
753
+ total: z.ZodOptional<z.ZodNumber>;
754
+ }, "strip", z.ZodTypeAny, {
755
+ items: {
756
+ tenantId: string;
757
+ createdAt: string;
758
+ createdBy: string;
759
+ updatedAt: string;
760
+ updatedBy: string;
761
+ version: number;
762
+ localEducationAgencyId: number;
763
+ categories: {
764
+ educationOrganizationCategoryDescriptor: string;
765
+ }[];
766
+ nameOfInstitution: string;
767
+ operationalStatusDescriptor: "Active" | "Added" | "ChangedAgency" | "Closed" | "Inactive" | "New" | "Reopened" | "Future";
768
+ id: string;
769
+ leaCategoryDescriptor: "Independent" | "CharterLEA" | "Intermediate" | "SupervisoryUnion" | "Other";
770
+ charterStatusDescriptor?: "NotACharter" | "SchoolCharter" | "CollegeUniversityCharter" | "OpenEnrollment" | undefined;
771
+ identificationCodes?: {
772
+ identificationCode: string;
773
+ educationOrganizationIdentificationSystemDescriptor: "Other" | "NCES" | "SEA" | "DUNS" | "Federal";
774
+ }[] | undefined;
775
+ accountabilityRatings?: {
776
+ schoolYear: number;
777
+ title: string;
778
+ rating: string;
779
+ ratingOrganization?: string | undefined;
780
+ ratingDate?: string | undefined;
781
+ }[] | undefined;
782
+ addresses?: {
783
+ city: string;
784
+ addressTypeDescriptor: "Physical" | "Mailing" | "Shipping";
785
+ streetNumberName: string;
786
+ stateAbbreviationDescriptor: "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";
787
+ postalCode: string;
788
+ apartmentRoomSuiteNumber?: string | undefined;
789
+ nameOfCounty?: string | undefined;
790
+ countyFIPSCode?: string | undefined;
791
+ latitude?: string | undefined;
792
+ longitude?: string | undefined;
793
+ }[] | undefined;
794
+ telephones?: {
795
+ telephoneNumber: string;
796
+ institutionTelephoneNumberTypeDescriptor: "Main" | "Administrative" | "Fax" | "Attendance";
797
+ }[] | undefined;
798
+ stateEducationAgencyId?: string | undefined;
799
+ shortNameOfInstitution?: string | undefined;
800
+ webSite?: string | undefined;
801
+ educationServiceCenterId?: string | undefined;
802
+ parentLocalEducationAgencyId?: string | undefined;
803
+ }[];
804
+ hasMore: boolean;
805
+ lastEvaluatedKey?: string | undefined;
806
+ total?: number | undefined;
807
+ }, {
808
+ items: {
809
+ tenantId: string;
810
+ createdAt: string;
811
+ createdBy: string;
812
+ updatedAt: string;
813
+ updatedBy: string;
814
+ version: number;
815
+ localEducationAgencyId: number;
816
+ categories: {
817
+ educationOrganizationCategoryDescriptor: string;
818
+ }[];
819
+ nameOfInstitution: string;
820
+ operationalStatusDescriptor: "Active" | "Added" | "ChangedAgency" | "Closed" | "Inactive" | "New" | "Reopened" | "Future";
821
+ id: string;
822
+ leaCategoryDescriptor: "Independent" | "CharterLEA" | "Intermediate" | "SupervisoryUnion" | "Other";
823
+ charterStatusDescriptor?: "NotACharter" | "SchoolCharter" | "CollegeUniversityCharter" | "OpenEnrollment" | undefined;
824
+ identificationCodes?: {
825
+ identificationCode: string;
826
+ educationOrganizationIdentificationSystemDescriptor: "Other" | "NCES" | "SEA" | "DUNS" | "Federal";
827
+ }[] | undefined;
828
+ accountabilityRatings?: {
829
+ schoolYear: number;
830
+ title: string;
831
+ rating: string;
832
+ ratingOrganization?: string | undefined;
833
+ ratingDate?: string | undefined;
834
+ }[] | undefined;
835
+ addresses?: {
836
+ city: string;
837
+ addressTypeDescriptor: "Physical" | "Mailing" | "Shipping";
838
+ streetNumberName: string;
839
+ stateAbbreviationDescriptor: "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";
840
+ postalCode: string;
841
+ apartmentRoomSuiteNumber?: string | undefined;
842
+ nameOfCounty?: string | undefined;
843
+ countyFIPSCode?: string | undefined;
844
+ latitude?: string | undefined;
845
+ longitude?: string | undefined;
846
+ }[] | undefined;
847
+ telephones?: {
848
+ telephoneNumber: string;
849
+ institutionTelephoneNumberTypeDescriptor: "Main" | "Administrative" | "Fax" | "Attendance";
850
+ }[] | undefined;
851
+ stateEducationAgencyId?: string | undefined;
852
+ shortNameOfInstitution?: string | undefined;
853
+ webSite?: string | undefined;
854
+ educationServiceCenterId?: string | undefined;
855
+ parentLocalEducationAgencyId?: string | undefined;
856
+ }[];
857
+ hasMore: boolean;
858
+ lastEvaluatedKey?: string | undefined;
859
+ total?: number | undefined;
860
+ }>;
861
+ export type LeaListResponseDto = z.infer<typeof leaListResponseSchema>;
862
+ export declare const leaFilterSchema: z.ZodObject<{
863
+ seaId: z.ZodOptional<z.ZodString>;
864
+ escId: z.ZodOptional<z.ZodString>;
865
+ leaCategoryDescriptor: z.ZodOptional<z.ZodEnum<["Independent", "CharterLEA", "Intermediate", "SupervisoryUnion", "Other"]>>;
866
+ operationalStatus: z.ZodOptional<z.ZodEnum<["Active", "Added", "ChangedAgency", "Closed", "Inactive", "New", "Reopened", "Future"]>>;
867
+ search: z.ZodOptional<z.ZodString>;
868
+ limit: z.ZodDefault<z.ZodNumber>;
869
+ cursor: z.ZodOptional<z.ZodString>;
870
+ }, "strip", z.ZodTypeAny, {
871
+ limit: number;
872
+ cursor?: string | undefined;
873
+ search?: string | undefined;
874
+ leaCategoryDescriptor?: "Independent" | "CharterLEA" | "Intermediate" | "SupervisoryUnion" | "Other" | undefined;
875
+ seaId?: string | undefined;
876
+ escId?: string | undefined;
877
+ operationalStatus?: "Active" | "Added" | "ChangedAgency" | "Closed" | "Inactive" | "New" | "Reopened" | "Future" | undefined;
878
+ }, {
879
+ limit?: number | undefined;
880
+ cursor?: string | undefined;
881
+ search?: string | undefined;
882
+ leaCategoryDescriptor?: "Independent" | "CharterLEA" | "Intermediate" | "SupervisoryUnion" | "Other" | undefined;
883
+ seaId?: string | undefined;
884
+ escId?: string | undefined;
885
+ operationalStatus?: "Active" | "Added" | "ChangedAgency" | "Closed" | "Inactive" | "New" | "Reopened" | "Future" | undefined;
886
+ }>;
887
+ export type LeaFilterDto = z.infer<typeof leaFilterSchema>;
888
+ //# sourceMappingURL=local-education-agency.schema.d.ts.map