{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AddNotificationsDetails", "title": "AddNotificationsDetails", "additionalProperties": true, "description": "Details of notifications which should be added to the notification scheme.", "properties": { "notificationSchemeEvents": { "description": "The list of notifications which should be added to the notification scheme.", "items": { "$ref": "#/components/schemas/NotificationSchemeEventDetails" }, "type": "array", "writeOnly": true } }, "required": [ "notificationSchemeEvents" ], "type": "object" }