action bbci_get_programmes_popular { label: "Get programmes popular" description: "Get programmes popular" provider: bbci method: GET path: "/groups/popular/episodes" encoding: json input: { type: "object" properties: { availability: { type: "string" enum: ["all", "available"] } initial_child_count: { type: "integer" } mixin: { type: "array" enum: ["live", "promotions"] items: { type: "string" } } page: { type: "integer" format: "int64" } per_page: { type: "integer" format: "int64" } rights: { type: "string" enum: ["mobile", "tv", "web"] } sort: { type: "string" } sort_direction: { type: "string" enum: ["asc", "desc"] } } required: ["availability", "initial_child_count", "page", "per_page", "rights", "sort", "sort_direction"] additionalProperties: false } output: { type: "object" } }