{
    "title": "jobChainFilter",
    "id": "schemas/jobChain/jobChainFilter",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.jobChain.JobChainFilter",
    "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": "/([^/]+/)*[^/]+"
        },
        "compact": {
            "id": "schemas/common/compactParam",
            "description": "controls if the object view is compact or detailed",
            "type": "boolean",
            "default": false
        },
        "compactView": {
            "type": "boolean",
            "default": false
        },
        "maxOrders": {
            "id": "schemas/common/nonNegativeInteger",
            "type": "integer",
            "minimum": 0
        }
    }
}