{
    "title": "xmleditor validate configuration answer",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.xmleditor.validate.ValidateConfigurationAnswer",
    "type": "object",
    "description": "",
    "properties": {
        "validated": {
            "description": "Value is UTC timestamp in ISO 8601 YYYY-MM-DDThh:mm:ss.sZ or empty",
            "type": "string",
            "format": "date-time"
        },
        "validationError": {
            "javaType": "com.sos.joc.model.xmleditor.validate.ErrorMessage",
            "type": "object",
            "properties": {
                "code": {
                    "type": "string"
                },
                "message": {
                    "type": "string"
                },
                "line": {
                    "type": "integer"
                },
                "column": {
                    "type": "integer"
                },
                "elementName": {
                    "type": "string"
                },
                "elementPosition": {
                    "type": "string"
                },
                "fatal": {
                    "type": "boolean"
                }
            },
            "additionalProperties": false
        }
    },
    "additionalProperties": false
}