action jellyfin_get_notifications_summary { label: "Gets a user's notification summary." provider: jellyfin method: GET path: "/Notifications/{userId}/Summary" encoding: json input: { type: "object" properties: { userId: { type: "string" } } required: ["userId"] additionalProperties: false } output: { type: "object" description: "The notification summary DTO." properties: { MaxUnreadNotificationLevel: { type: "string" enum: ["Normal", "Warning", "Error"] } UnreadCount: { type: "integer" format: "int32" description: "Gets or sets the number of unread notifications." } } additionalProperties: false } }