action clever_get_students_for_school { label: "getStudentsForSchool" description: "Returns the students for a school" provider: clever method: GET path: "/schools/{id}/students" encoding: json input: { type: "object" properties: { ending_before: { type: "string" } id: { type: "string" } limit: { type: "integer" } starting_after: { type: "string" } where: { 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" } credentials: { type: "object" properties: { district_username: { type: "string" } } } district: { type: "string" } dob: { type: "string" } ell_status: { type: "string" enum: ["Y", "N", ""] } email: { type: "string" } gender: { type: "string" enum: ["M", "F", ""] } grade: { type: "string" enum: ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "PreKindergarten", "Kindergarten", "PostGraduate", "Other"] } graduation_year: { type: "string" } hispanic_ethnicity: { type: "string" enum: ["Y", "N", ""] } 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" } } } name: { type: "object" properties: { first: { type: "string" } last: { type: "string" } middle: { type: "string" } } } race: { type: "string" enum: ["Caucasian", "Asian", "Black or African American", "American Indian", "Hawaiian or Other Pacific Islander", "Two or More Races", "Unknown", ""] } school: { type: "string" } schools: { type: "array" items: { type: "string" } } sis_id: { type: "string" } state_id: { type: "string" } student_number: { type: "string" } } } } } } } } }