{
    "title": "orderPath",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.job.OrderPath",
    "type": "object",
    "required": [
        "workflow"
    ],
    "properties": {
        "workflowPath": {
            "description": "absolute path of a JobScheduler object.",
            "type": "string",
            "pattern": "^(/|(/[^/\\<>?:\"|*]+)+)$",
            "maxLength": 255,
            "minLength": 1
        },
        "orderId": {
            "description": "if orderId undefined or empty then all orders of specified job chain are requested",
            "type": "string"
        },
        "position": {
            "type": "string"
        }
    }
}