{
    "title": "common job tag request filter",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.tag.common.RequestWorkflowJobFilter",
    "type": "object",
    "extends": {
        "javaType": "com.sos.joc.model.tag.common.RequestWorkflowFilter",
        "type": "object",
        "required": [
            "path"
        ],
        "properties": {
            "path": {
                "type": "string",
                "pattern": "^[^<>]*$",
                "maxLength": 255,
                "minLength": 1
            }
        },
        "additionalProperties": false
    },
    "required": [
        "path"
    ],
    "properties": {
        "jobNames": {
            "type": "array",
            "uniqueItems": true,
            "items": {
                "type": "string",
                "pattern": "^[^<>]*$",
                "maxLength": 255
            }
        }
    },
    "additionalProperties": false
}