action adafruit_previous_data { label: "Previous Data in Queue" description: "Get the previously processed data point in the feed. NOTE: this method doesn't move the processing queue pointer." provider: adafruit method: GET path: "/{username}/feeds/{feed_key}/data/previous" 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 } }