{
    "title": "xmleditor apply configuration in",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.xmleditor.apply.ApplyConfiguration",
    "type": "object",
    "description": "id, name, schemaIdentifier only for OTHER",
    "required": [
        "jobschedulerId"
    ],
    "properties": {
        "jobschedulerId": {
            "type": "string",
            "pattern": "^[^/\\<>?:\"|*]*$",
            "maxLength": 100
        },
        "objectType": {
            "javaType": "com.sos.joc.model.xmleditor.common.ObjectType",
            "type": "string",
            "enum": [
                "YADE",
                "NOTIFICATION",
                "OTHER"
            ]
        },
        "configuration": {
            "type": "string",
            "pattern": "^(?s)((?!<script( |>)|<svg/on).)*$"
        },
        "id": {
            "type": "integer"
        },
        "name": {
            "type": "string",
            "pattern": "^[^<>]*$",
            "maxLength": 255
        },
        "schemaIdentifier": {
            "type": "string",
            "pattern": "^[^<>]*$",
            "maxLength": 255
        }
    }
}