{
    "title": "cluster settings",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "description": "a map for arbitrary key-value pairs (String, GlobalSettingsSection)",
    "javaType": "com.sos.joc.model.configuration.globals.GlobalSettings",
    "type": "object",
    "additionalProperties": {
        "description": "a map for arbitrary key-value pairs (String, GlobalSettingsSectionEntry)",
        "javaType": "com.sos.joc.model.configuration.globals.GlobalSettingsSection",
        "type": "object",
        "properties": {
            "ordering": {
                "type": "integer",
                "minimum": 0
            }
        },
        "additionalProperties": {
            "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"
                    ]
                },
                "default": {
                    "type": "string",
                    "pattern": "^[^<>]*$",
                    "maxLength": 255
                },
                "ordering": {
                    "type": "integer",
                    "minimum": 0
                }
            }
        }
    }
}