action jellyfin_get_lineups { label: "Gets available lineups." provider: jellyfin method: GET path: "/LiveTv/ListingProviders/Lineups" encoding: json input: { type: "object" properties: { country: { type: "string" description: "Country." } id: { type: "string" description: "Provider id." } location: { type: "string" description: "Location." } type: { type: "string" description: "Provider type." } } additionalProperties: false } output: { type: "array" items: { type: "object" properties: { Id: { type: "string" description: "Gets or sets the identifier." } Name: { type: "string" description: "Gets or sets the name." } } additionalProperties: false } } }