{
    "title": "ProfilesFilter",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.profile.ProfileFilter",
    "type": "object",
    "required": [
        "controllerId",
        "accountName"
    ],
    "properties": {
        "controllerId": {
            "type": "string",
            "pattern": "^[^/\\<>?!&:;()\"|*^]*$",
            "maxLength": 100
        },
        "accountName": {
            "type": "string",
            "pattern": "^[^/\\<>?!&:;()\"|*^]*$",
            "maxLength": 100
        }
    }
}