action pressassociation_list_schedule { label: "Schedule Collection" description: "The schedule endpoint produces a linear TV schedule for a given channel and date range.\n\n - The date range supplied must be no larger than 21 days.\n - If no end data is passed the API will default to start date + 24 hours." provider: pressassociation method: GET path: "/schedule" encoding: json input: { type: "object" properties: { aliases: { type: "boolean" } channelId: { type: "string" } end: { type: "string" } start: { type: "string" } } required: ["channelId", "start"] additionalProperties: false } output: { type: "object" } }