action adafruit_all_data { label: "Get all data for the given feed" description: "" provider: adafruit method: GET path: "/{username}/feeds/{feed_key}/data" encoding: json input: { type: "object" properties: { end_time: { type: "string" } feed_key: { type: "string" } include: { type: "string" } limit: { type: "string" } start_time: { type: "string" } username: { type: "string" } } required: ["feed_key", "username"] additionalProperties: false } output: { type: "object" additionalProperties: true } }