{
    "title": "graphFilter",
    "id": "schemas/jobChain/graphFilter",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.jobChain.GraphFilter",
    "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": "/([^/]+/)*[^/]+"
        },
        "mime": {
            "id": "schemas/common/graphMimeFilter",
            "description": "Output format of the graph",
            "javaType": "com.sos.joc.model.jobChain.GraphMime",
            "type": "string",
            "enum": [
                "PNG",
                "SVG"
            ],
            "default": "SVG"
        }
    }
}