action clever_get_admins_for_district { label: "getAdminsForDistrict" description: "Returns the admins for a district" provider: clever method: GET path: "/districts/{id}/admins" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { data: { type: "array" items: { type: "object" properties: { district: { type: "string" } email: { type: "string" } id: { type: "string" } name: { type: "object" properties: { first: { type: "string" } last: { type: "string" } middle: { type: "string" } } } title: { type: "string" } } } } } } }