action mon_voyage_pas_cher_get_autocomplete { label: "Retrieve cities informations from a string / build an autocomplete" description: "Search cities from a string parameters." provider: mon_voyage_pas_cher method: GET path: "/cities/findcitiesfromtext" encoding: json input: { type: "object" properties: { countrycode: { type: "string" } language: { type: "string" } q: { type: "string" } sort: { type: "string" } } required: ["language", "q", "sort"] additionalProperties: false } output: { type: "object" additionalProperties: true } }