action adafruit_get_data { label: "Returns data based on feed key" description: "" provider: adafruit method: GET path: "/{username}/feeds/{feed_key}/data/{id}" encoding: json input: { type: "object" properties: { feed_key: { type: "string" } id: { type: "string" } include: { type: "string" } username: { type: "string" } } required: ["feed_key", "id", "username"] additionalProperties: false } output: { type: "object" additionalProperties: true } }