action jellyfin_get_query_filters_legacy { label: "Gets legacy query filters." provider: jellyfin method: GET path: "/Items/Filters" encoding: json input: { type: "object" properties: { includeItemTypes: { type: "array" description: "Optional. If specified, results will be filtered based on item type. This allows multiple, comma delimited." items: { type: "string" } } mediaTypes: { type: "array" description: "Optional. Filter by MediaType. Allows multiple, comma delimited." items: { type: "string" } } parentId: { type: "string" format: "uuid" description: "Optional. Parent id." } userId: { type: "string" format: "uuid" description: "Optional. User id." } } additionalProperties: false } output: { type: "object" properties: { Genres: { type: "array" items: { type: "string" } } OfficialRatings: { type: "array" items: { type: "string" } } Tags: { type: "array" items: { type: "string" } } Years: { type: "array" items: { type: "integer" format: "int32" } } } additionalProperties: false } }