action ornl_get_preview { label: "Preview Daymet Data in a web browser" description: "Returns a table to the browser displaying requested data" provider: ornl method: GET path: "/preview" 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 } }