Details of a notification within a notification scheme.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/NotificationSchemeNotificationDetails", "title": "NotificationSchemeNotificationDetails", "additionalProperties": true, "description": "Details of a notification within a notification scheme.", "maxLength": 255, "properties": { "notificationType": { "description": "The notification type, e.g `CurrentAssignee`, `Group`, `EmailAddress`.", "type": "string", "writeOnly": true }, "parameter": { "description": "The value corresponding to the specified notification type.", "type": "string", "writeOnly": true } }, "required": [ "notificationType" ], "type": "object", "writeOnly": true }