action clever_get_district_for_teacher { label: "getDistrictForTeacher" description: "Returns the district for a teacher" provider: clever method: GET path: "/teachers/{id}/district" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { data: { type: "object" properties: { id: { type: "string" } mdr_number: { type: "string" } name: { type: "string" } } } } } }