action gisgraphy_reversegeocode { label: "Reverse geocode an address" description: "The Reverse geocoding service allows to search for an address for a given GPS position." provider: gisgraphy method: GET path: "/reversegeocoding/reversegeocode" encoding: json input: { type: "object" properties: { callback: { type: "string" } format: { type: "string" } from: { type: "string" } indent: { type: "string" } lat: { type: "string" } lng: { type: "string" } to: { type: "string" } } required: ["lat", "lng"] additionalProperties: false } output: { type: "object" additionalProperties: true } }