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