{
    "title": "Filter of a tag",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.inventory.common.RequestTag",
    "type": "object",
    "required": [
        "tag"
    ],
    "properties": {
        "controllerId": {
            "type": "string",
            "pattern": "^[^/\\<>?:\"|*]*$",
            "maxLength": 100
        },
        "tag": {
            "type": "string",
            "pattern": "^[^<>]*$",
            "maxLength": 255,
            "minLength": 1
        },
        "onlyValidObjects": {
            "type": "boolean",
            "default": false
        }
    }
}