action bbci_get_programme_highlights { label: "Get programme highlights" description: "Get programme highlights" provider: bbci method: GET path: "/home/highlights" encoding: json input: { type: "object" properties: { availability: { type: "string" enum: ["all", "available"] } lang: { type: "string" enum: ["en", "cy", "ga", "gd", "pi"] } mixin: { type: "array" enum: ["live", "promotions"] items: { type: "string" } } rights: { type: "string" enum: ["mobile", "tv", "web"] } } required: ["availability", "lang", "rights"] additionalProperties: false } output: { type: "object" } }