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