action jellyfin_get_live_tv_info { label: "Gets available live tv services." provider: jellyfin method: GET path: "/LiveTv/Info" encoding: json output: { type: "object" properties: { EnabledUsers: { type: "array" description: "Gets or sets the enabled users." items: { type: "string" } } IsEnabled: { type: "boolean" description: "Gets or sets a value indicating whether this instance is enabled." } Services: { type: "array" description: "Gets or sets the services." items: { type: "object" description: "Class ServiceInfo." properties: { HasUpdateAvailable: { type: "boolean" description: "Gets or sets a value indicating whether this instance has update available." } HomePageUrl: { type: "string" description: "Gets or sets the home page URL." } IsVisible: { type: "boolean" description: "Gets or sets a value indicating whether this instance is visible." } Name: { type: "string" description: "Gets or sets the name." } Status: { type: "string" enum: ["Ok", "Unavailable"] } StatusMessage: { type: "string" description: "Gets or sets the status message." } Tuners: { type: "array" items: { type: "string" } } Version: { type: "string" description: "Gets or sets the version." } } additionalProperties: false } } } additionalProperties: false } }