action ornl_get_visualize { label: "Visualize Daymet Data in a web browser" description: "Returns plots to a web browser of requested data using Plotly" provider: ornl method: GET path: "/visualize" encoding: json input: { type: "object" properties: { end: { type: "string" } format: { type: "string" } lat: { type: "string" } lon: { type: "string" } start: { type: "string" } vars: { type: "string" } years: { type: "string" } } required: ["format", "lat", "lon"] additionalProperties: false } output: { type: "object" additionalProperties: true } }