action mon_voyage_pas_cher_get_distance { label: "Calculate distance between lats/longs" description: "This webservice is providing you the ability to calculate the distance between 2 lat/long points, it returns you the value in km or miles" provider: mon_voyage_pas_cher method: GET path: "/distance" encoding: json input: { type: "object" properties: { locationA: { type: "string" } locationB: { type: "string" } unit: { type: "string" } } required: ["locationA", "locationB"] additionalProperties: false } output: { type: "object" additionalProperties: true } }