action mtaa_api_districts_in_a_region { label: "Returns all districts in region" description: "Returns a post code and all districts in a specified region" provider: mtaa_api method: GET path: "/{country}/{region}" encoding: json input: { type: "object" properties: { country: { type: "string" } region: { type: "string" } } required: ["country", "region"] additionalProperties: false } output: { type: "object" additionalProperties: true } }