action adafruit_all_feeds { label: "All feeds for current user" description: "The Feeds endpoint returns information about the user's feeds. The response includes the latest value of each feed, and other metadata about each feed." provider: adafruit method: GET path: "/{username}/feeds" encoding: json input: { type: "object" properties: { username: { type: "string" } } required: ["username"] additionalProperties: false } output: { type: "object" additionalProperties: true } }