{
    "title": "job notification",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.inventory.model.job.notification.JobNotification",
    "type": "object",
    "properties": {
        "types": {
            "type": "array",
            "items": {
                "javaType": "com.sos.inventory.model.job.notification.JobNotificationType",
                "type": "string",
                "enum": [
                    "ERROR",
                    "SUCCESS",
                    "WARNING"
                ]
            }
        },
        "mail": {
            "javaType": "com.sos.inventory.model.job.notification.JobNotificationMail",
            "type": "object",
            "properties": {
                "to": {
                    "type": "string",
                    "pattern": "^[^<>]*$",
                    "maxLength": 900
                },
                "cc": {
                    "type": "string",
                    "pattern": "^[^<>]*$",
                    "maxLength": 900
                },
                "bcc": {
                    "type": "string",
                    "pattern": "^[^<>]*$",
                    "maxLength": 900
                }
            },
            "additionalProperties": false
        }
    },
    "additionalProperties": false
}