action mon_voyage_pas_cher_get_sun { label: "Search position of sun from lat/long and date" description: "This webservice is providing you the ability to retrieve the time of each phases of the sunlight cycle. Sunset, sunrise, sunriseEnd, golden hour, solarNoon, dawn, dusk and more for a given location and date. If the date if not provided, the response provided return informations for today at UTC time." provider: mon_voyage_pas_cher method: GET path: "/sun_positions" encoding: json input: { type: "object" properties: { date: { type: "string" } location: { type: "string" } } required: ["location"] additionalProperties: false } output: { type: "object" additionalProperties: true } }