action clever_get_schools_for_school_admin { label: "getSchoolsForSchoolAdmin" description: "Returns the schools for a school admin" provider: clever method: GET path: "/school_admins/{id}/schools" encoding: json input: { type: "object" properties: { ending_before: { type: "string" } id: { type: "string" } limit: { type: "integer" } starting_after: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { data: { type: "array" items: { type: "object" properties: { data: { type: "object" properties: { created: { type: "string" format: "datetime" } district: { type: "string" } high_grade: { type: "string" enum: ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "PreKindergarten", "Kindergarten", "PostGraduate", "Other"] } id: { type: "string" } last_modified: { type: "string" format: "datetime" } location: { type: "object" properties: { address: { type: "string" } city: { type: "string" } lat: { type: "string" } lon: { type: "string" } state: { type: "string" } zip: { type: "string" } } } low_grade: { type: "string" enum: ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "PreKindergarten", "Kindergarten", "PostGraduate", "Other"] } mdr_number: { type: "string" } name: { type: "string" } nces_id: { type: "string" } phone: { type: "string" } principal: { type: "object" properties: { email: { type: "string" } name: { type: "string" } } } school_number: { type: "string" } sis_id: { type: "string" } state_id: { type: "string" } } } } } } } } }