{
    "title": "cluster setting",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.configuration.globals.GlobalSettingsSectionEntry",
    "type": "object",
    "additionalProperties": false,
    "properties": {
        "value": {
            "type": "string",
            "pattern": "^[^<>]*$",
            "maxLength": 255
        },
        "type": {
            "javaType": "com.sos.joc.model.configuration.globals.GlobalSettingsSectionValueType",
            "type": "string",
            "enum": [
                "TIMEZONE",
                "DURATION",
                "WEEKDAYS",
                "TIME",
                "ARRAY",
                "POSITIVENUMBER",
                "NONNEGATIVENUMBER",
                "POSITIVEINTEGER",
                "NONNEGATIVEINTEGER",
                "STRING",
                "PASSWORD",
                "BOOLEAN"
            ]
        },
        "default": {
            "type": "string",
            "pattern": "^[^<>]*$",
            "maxLength": 255
        },
        "ordering": {
            "type": "integer",
            "minimum": 0
        }
    }
}