action jellyfin_get_default_listing_provider { label: "Gets default listings provider info." provider: jellyfin method: GET path: "/LiveTv/ListingProviders/Default" encoding: json output: { type: "object" properties: { ChannelMappings: { type: "array" items: { type: "object" properties: { Name: { type: "string" description: "Gets or sets the name." } Value: { type: "string" description: "Gets or sets the value." } } additionalProperties: false } } Country: { type: "string" } EnableAllTuners: { type: "boolean" } EnabledTuners: { type: "array" items: { type: "string" } } Id: { type: "string" } KidsCategories: { type: "array" items: { type: "string" } } ListingsId: { type: "string" } MovieCategories: { type: "array" items: { type: "string" } } MoviePrefix: { type: "string" } NewsCategories: { type: "array" items: { type: "string" } } Password: { type: "string" } Path: { type: "string" } PreferredLanguage: { type: "string" } SportsCategories: { type: "array" items: { type: "string" } } Type: { type: "string" } UserAgent: { type: "string" } Username: { type: "string" } ZipCode: { type: "string" } } additionalProperties: false } }