{
    "title": "jobPath",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.job.JobPath",
    "type": "object",
    "required": [
        "workflowPath"
    ],
    "properties": {
        "workflowPath": {
            "type": "string",
            "pattern": "^[^<>]*$",
            "maxLength": 255
        },
        "job": {
            "description": "if job undefined or empty then all jobs of specified workflow are requested",
            "type": "string"
        }
    }
}