action gisgraphy_streetsearch { label: "Geocode an address" description: "The street service allows you to search for street by GPS position. You can : Specify GPS position, Give the beginning or a part of the name of the street (useful for autocompletion), Limit search to a specific type (e.g : Pedestrian, highway, residential, ... 25 types available), Limit search to a specified radius, Limit search to one way streets," provider: gisgraphy method: GET path: "/street/find" encoding: json input: { type: "object" properties: { callback: { type: "string" } distance: { type: "string" } format: { type: "string" } from: { type: "string" } indent: { type: "string" } lat: { type: "string" } lng: { type: "string" } oneway: { type: "string" } radius: { type: "string" } streettype: { type: "string" } to: { type: "string" } } required: ["lat", "lng"] additionalProperties: false } output: { type: "object" additionalProperties: true } }