{
    "title": "configurationsFilter",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.configuration.ConfigurationsFilter",
    "type": "object",
    "properties": {
        "controllerId": {
            "type": "string",
            "pattern": "^[^/\\<>?!&:;()\"|*^]*$",
            "maxLength": 100
        },
        "account": {
            "type": "string",
            "pattern": "^[^<>]*$",
            "maxLength": 255
        },
        "configurationType": {
            "javaType": "com.sos.joc.model.configuration.ConfigurationType",
            "type": "string",
            "enum": [
                "CUSTOMIZATION",
                "IGNORELIST",
                "PROFILE",
                "SETTING",
                "GLOBALS",
                "IAM"
            ]
        },
        "objectType": {
            "type": "string",
            "pattern": "^[^<>]*$",
            "maxLength": 255
        },
        "shared": {
            "type": "boolean"
        }
    }
}