action clever_get_school_admin { label: "getSchoolAdmin" description: "Returns a specific school admin" provider: clever method: GET path: "/school_admins/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } include: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { data: { type: "object" properties: { credentials: { type: "object" properties: { district_username: { type: "string" } } } district: { type: "string" } email: { type: "string" } id: { type: "string" } name: { type: "object" properties: { first: { type: "string" } last: { type: "string" } middle: { type: "string" } } } schools: { type: "array" items: { type: "string" } } staff_id: { type: "string" } title: { type: "string" } } } } } }