{
    "title": "xmleditor read standard configuration (YADE, NOTIFICATION) answer",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.xmleditor.read.standard.ReadStandardConfigurationAnswer",
    "type": "object",
    "description": "",
    "required": [
        "configuration",
        "schema",
        "state"
    ],
    "properties": {
        "configuration": {
            "type": "string"
        },
        "configurationJson": {
            "type": "string"
        },
        "recreateJson": {
            "type": "boolean"
        },
        "schema": {
            "type": "string"
        },
        "schemaIdentifier": {
            "type": "string"
        },
        "state": {
            "javaType": "com.sos.joc.model.inventory.common.ItemStateEnum",
            "type": "string",
            "enum": [
                "DEPLOYMENT_IS_NEWER",
                "RELEASE_IS_NEWER",
                "DRAFT_IS_NEWER",
                "DEPLOYMENT_NOT_EXIST",
                "RELEASE_NOT_EXIST",
                "DRAFT_NOT_EXIST",
                "NO_CONFIGURATION_EXIST"
            ]
        },
        "released": {
            "type": "boolean"
        },
        "hasReleases": {
            "type": "boolean"
        },
        "validation": {
            "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"
                        }
                    }
                }
            }
        },
        "configurationDate": {
            "description": "Value is UTC timestamp in ISO 8601 YYYY-MM-DDThh:mm:ss.sZ or empty",
            "type": "string",
            "format": "date-time"
        }
    }
}