action gisgraphy_geocode { label: "Geocode an address" description: "The Gisgraphy geocoding service allows you to transform postal addresses or other descriptions (a street, a city, a postal code, a country, or a combination) of a location into a (latitude, longitude) coordinate." provider: gisgraphy method: GET path: "/geocoding/geocode" encoding: json input: { type: "object" properties: { address: { type: "string" } callback: { type: "string" } country: { type: "string" } format: { type: "string" } from: { type: "string" } indent: { type: "string" } postal: { type: "string" } to: { type: "string" } } required: ["address"] additionalProperties: false } output: { type: "object" additionalProperties: true } }