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