action adafruit_last_data { label: "Last Data in Queue" description: "Get the most recent data point in the feed. This request sets the queue pointer to the end of the feed." provider: adafruit method: GET path: "/{username}/feeds/{feed_key}/data/last" 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 } }