action clever_get_district { label: "getDistrict" description: "Returns a specific district" provider: clever method: GET path: "/districts/{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: { id: { type: "string" } mdr_number: { type: "string" } name: { type: "string" } } } } } }