{
    "title": "loginLogo",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "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"
            ]
        }
    }
}