{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Notification", "title": "Notification", "type": "object", "properties": { "id": { "type": "string", "description": "Notification unique identifier" }, "title": { "type": "string", "description": "Notification title" }, "description": { "type": "string", "description": "Notification description" }, "severity": { "type": "string", "enum": [ "Information", "Warning", "Critical" ], "description": "Severity level of the notification" }, "createdDate": { "type": "string", "format": "date-time", "description": "When the notification was created" } } }