action gisgraphy_fulltxtsearch { label: "search for places by text around a GPS point" description: "The full text service allows you to search for features / places / street and do autocompletion . you can : Specify one or more words search on part of the name (auto completion / suggestion) Search for text or zip code Specify a GPS restriction (promote nearest, not sorted but has an impact on the score), Limit the results to a specific Language, Country, place type, Paginate the results, Specify the output verbosity, Tells if you want the output to be indented, Tells that all words are required or not, The search is case insensitive, use synonyms (Saint/st, ..), separator characters stripping, ..." provider: gisgraphy method: GET path: "/fulltext/search" encoding: json input: { type: "object" properties: { allwordsrequired: { type: "string" } callback: { type: "string" } country: { type: "string" } format: { type: "string" } from: { type: "string" } indent: { type: "string" } lang: { type: "string" } lat: { type: "string" } lng: { type: "string" } q: { type: "string" } radius: { type: "string" } spellchecking: { type: "string" } style: { type: "string" } suggest: { type: "string" } to: { type: "string" } } required: ["allwordsrequired", "q"] additionalProperties: false } output: { type: "object" additionalProperties: true } }