{
    "title": "orderPath",
    "id": "schemas/order/orderPath",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.order.OrderPath",
    "type": "object",
    "required": [
        "jobChain"
    ],
    "properties": {
        "jobChain": {
            "id": "schemas/common/path",
            "description": "absolute path based on live folder of a JobScheduler object.",
            "type": "string",
            "pattern": "/([^/]+/)*[^/]+"
        },
        "orderId": {
            "description": "if orderId undefined or empty then all orders of specified job chain are requested",
            "type": "string"
        }
    }
}