action jellyfin_get_media_info_images { label: "Get all media info images." provider: jellyfin method: GET path: "/Images/MediaInfo" encoding: json output: { type: "array" items: { type: "object" properties: { Context: { type: "string" description: "Gets or sets the context." } FileLength: { type: "integer" format: "int64" description: "Gets or sets the length of the file." } Format: { type: "string" description: "Gets or sets the format." } Name: { type: "string" description: "Gets or sets the name." } Theme: { type: "string" description: "Gets or sets the theme." } } additionalProperties: false } } }