action jellyfin_get_notification_types { label: "Gets notification types." provider: jellyfin method: GET path: "/Notifications/Types" encoding: json output: { type: "array" items: { type: "object" properties: { Category: { type: "string" } Enabled: { type: "boolean" } IsBasedOnUserEvent: { type: "boolean" } Name: { type: "string" } Type: { type: "string" } } additionalProperties: false } } }