{
    "title": "version od a specific controller",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.joc.ControllerVersion",
    "type": "object",
    "required": [
        "controllerId",
        "uri",
        "version"
    ],
    "properties": {
        "controllerId": {
            "type": "string",
            "pattern": "^[^<>]*$",
            "maxLength": 255
        },
        "uri": {
            "type": "string",
            "pattern": "^[^<>]*$",
            "maxLength": 255
        },
        "version": {
            "type": "string",
            "pattern": "^[^<>]*$",
            "maxLength": 255
        },
        "compatibility": {
            "javaType": "com.sos.joc.model.joc.CompatibilityLevel",
            "type": "string",
            "enum": [
                "COMPATIBLE",
                "PARTIALLY_COMPATIBLE",
                "NOT_COMPATIBLE"
            ],
            "javaEnumNames": [
                "COMPATIBLE",
                "PARTIALLY_COMPATIBLE",
                "NOT_COMPATIBLE"
            ]
        }
    }
}