Details of a notification scheme event.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/NotificationSchemeEventDetails", "title": "NotificationSchemeEventDetails", "additionalProperties": true, "description": "Details of a notification scheme event.", "properties": { "event": { "allOf": [ { "$ref": "#/components/schemas/NotificationSchemeEventTypeId" } ], "description": "The ID of the event." }, "notifications": { "description": "The list of notifications mapped to a specified event.", "items": { "$ref": "#/components/schemas/NotificationSchemeNotificationDetails" }, "maxLength": 255, "type": "array", "writeOnly": true } }, "required": [ "event", "notifications" ], "type": "object", "writeOnly": true }