{
    "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",
                        "LIST",
                        "POSITIVENUMBER",
                        "NONNEGATIVENUMBER",
                        "POSITIVEINTEGER",
                        "NONNEGATIVEINTEGER",
                        "STRING",
                        "PASSWORD",
                        "BOOLEAN"
                    ]
                },
                "default": {
                    "type": "string",
                    "pattern": "^[^<>]*$",
                    "maxLength": 255
                },
                "values": {
                    "type": "array",
                    "items": {
                        "type": "string",
                        "pattern": "^[^<>]*$",
                        "maxLength": 255
                    }
                },
                "ordering": {
                    "type": "integer",
                    "minimum": 0
                },
                "children": {
                    "description": "a map for arbitrary key-value pairs (String, GlobalSettingsSectionEntry)",
                    "javaType": "com.sos.joc.model.configuration.globals.GlobalSettingsSectionEntryChildren",
                    "type": "object",
                    "additionalProperties": {
                        "description": "globalSettingsSectionEntry-schema.json"
                    }
                }
            }
        }
    }
}