action clever_get_district_status { label: "getDistrictStatus" description: "Returns the status of the district" provider: clever method: GET path: "/districts/{id}/status" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { data: { type: "array" items: { type: "object" properties: { data: { type: "object" properties: { error: { type: "string" } id: { type: "string" } instant_login: { type: "boolean" } last_sync: { type: "string" format: "datetime" } launch_date: { type: "string" format: "datetime" } pause_end: { type: "string" format: "datetime" } pause_start: { type: "string" format: "datetime" } sis_type: { type: "string" } state: { type: "string" enum: ["running", "pending", "error", "paused"] } } } } } } } } }