{
    "title": "login",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.configuration.Login",
    "type": "object",
    "properties": {
        "defaultProfileAccount": {
            "type": "string",
            "pattern": "^[^<>]*$",
            "maxLength": 255
        },
        "enableRememberMe": {
            "type": "boolean"
        },
        "customLogo": {
            "javaType": "com.sos.joc.model.configuration.LoginLogo",
            "type": "object",
            "required": [
                "name"
            ],
            "properties": {
                "name": {
                    "type": "string",
                    "pattern": "^[^<>]*$",
                    "maxLength": 255
                },
                "height": {
                    "type": "string",
                    "pattern": "^[^<>]*$",
                    "maxLength": 255
                },
                "position": {
                    "javaType": "com.sos.joc.model.configuration.LoginLogoPosition",
                    "type": "string",
                    "enum": [
                        "TOP",
                        "BOTTOM"
                    ]
                }
            }
        }
    }
}