action adafruit_chart_data { label: "Chart data for current feed" description: "The Chart API is what we use on io.adafruit.com to populate charts over varying timespans with a consistent number of data points. The maximum number of points returned is 480. This API works by aggregating slices of time into a single value by averaging.\n\nAll time-based parameters are optional, if none are given it will default to 1 hour at the finest-grained resolution possible." provider: adafruit method: GET path: "/{username}/feeds/{feed_key}/data/chart" encoding: json input: { type: "object" properties: { end_time: { type: "string" } feed_key: { type: "string" } hours: { type: "string" } resolution: { type: "string" } start_time: { type: "string" } username: { type: "string" } } required: ["feed_key", "username"] additionalProperties: false } output: { type: "object" additionalProperties: true } }