action adafruit_next_data { label: "Next Data in Queue" description: "Get the next newest data point in the feed. If queue processing hasn't been started, the first data point in the feed will be returned." provider: adafruit method: GET path: "/{username}/feeds/{feed_key}/data/next" encoding: json input: { type: "object" properties: { feed_key: { type: "string" } include: { type: "string" } username: { type: "string" } } required: ["feed_key", "username"] additionalProperties: false } output: { type: "object" additionalProperties: true } }