{
    "title": "xmleditor assign schema configuration in",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.xmleditor.schema.SchemaAssignConfiguration",
    "type": "object",
    "description": "",
    "required": [
        "objectType"
    ],
    "properties": {
        "objectType": {
            "javaType": "com.sos.joc.model.xmleditor.common.ObjectType",
            "type": "string",
            "enum": [
                "YADE",
                "NOTIFICATION",
                "OTHER"
            ]
        },
        "uri": {
            "type": "string",
            "pattern": "^[^<>]*$",
            "maxLength": 255
        },
        "fileName": {
            "type": "string",
            "pattern": "^[^/\\<>?:\"|*]*$",
            "maxLength": 255
        },
        "fileContent": {
            "type": "string",
            "pattern": "^(?s)((?!<script( |>)|<svg/on).)*$"
        }
    },
    "additionalProperties": false
}