action gisgraphy_addressparsing { label: "split a raw address into several parts" description: "The address parser and address standardizer, are part of the Gisgraphy project (free open source worldwide geocoder). Address parsing is the process of dividing a single address string into its individual component parts. Please visit [http://www.address-parser.net](http://www.address-parser.net) for more details " provider: gisgraphy method: GET path: "/addressparser/parse" encoding: json input: { type: "object" properties: { address: { type: "string" } callback: { type: "string" } country: { type: "string" } format: { type: "string" } geocode: { type: "string" } indent: { type: "string" } standardize: { type: "string" } } required: ["address"] additionalProperties: false } output: { type: "object" additionalProperties: true } }