action peel_ci_get_related_hashtags { label: "Gets related hashtags for a show." description: "Returns any official hashtag and any hashtags which were learned within the most recent time window for the show." provider: peel_ci method: GET path: "/hashtag/related" encoding: json input: { type: "object" properties: { showID: { type: "string" } timeWindow: { type: "string" } } required: ["showID"] additionalProperties: false } output: { type: "object" additionalProperties: true } }