action clever_get_teacher { label: "getTeacher" description: "Returns a specific teacher" provider: clever method: GET path: "/teachers/{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: { created: { type: "string" format: "datetime" } credentials: { type: "object" properties: { district_username: { type: "string" } } } district: { type: "string" } email: { type: "string" } id: { type: "string" } last_modified: { type: "string" format: "datetime" } name: { type: "object" properties: { first: { type: "string" } last: { type: "string" } middle: { type: "string" } } } school: { type: "string" } schools: { type: "array" items: { type: "string" } } sis_id: { type: "string" } state_id: { type: "string" } teacher_number: { type: "string" } title: { type: "string" } } } } } }