{
    "title": "security_configuration",
    "id": "schemas/user/loginLogo",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.configuration.Login",
    "type": "object",
    "properties": {
        "defaultProfileAccount": {
            "type": "string"
        },
        "customLogo": {
            "id": "schemas/user/loginLogo",
            "javaType": "com.sos.joc.model.configuration.LoginLogo",
            "type": "object",
            "required": [
                "name"
            ],
            "properties": {
                "name": {
                    "type": "string"
                },
                "height": {
                    "type": "string"
                },
                "position": {
                    "javaType": "com.sos.joc.model.configuration.LoginLogoPosition",
                    "type": "string",
                    "enum": [
                        "TOP",
                        "BOTTOM"
                    ]
                }
            }
        }
    }
}