{
    "title": "xmleditor xml2json configuration in",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.xmleditor.xml2json.Xml2JsonConfiguration",
    "type": "object",
    "description": "schemaIdentifier only for OTHER",
    "required": [
        "jobschedulerId",
        "objectType",
        "configuration"
    ],
    "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).)*$"
        },
        "schemaIdentifier": {
            "type": "string",
            "pattern": "^[^<>]*$",
            "maxLength": 255
        }
    }
}