action clever_get_district_for_section { label: "getDistrictForSection" description: "Returns the district for a section" provider: clever method: GET path: "/sections/{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" } } } } } }