{
    "title": "jobChainFilter",
    "id": "schemas/jobChain/jobChainFilter",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.jobChain.JobChainHistoryFilter",
    "type": "object",
    "required": [
        "jobschedulerId",
        "jobChain"
    ],
    "properties": {
        "jobschedulerId": {
            "type": "string"
        },
        "jobChain": {
            "id": "schemas/common/path",
            "description": "absolute path based on live folder of a JobScheduler object.",
            "type": "string",
            "pattern": "/([^/]+/)*[^/]+"
        },
        "maxLastHistoryItems": {
            "id": "schemas/common/nonNegativeInteger",
            "type": "integer",
            "minimum": 0
        }
    }
}