{
    "title": "order in task",
    "id": "schemas/job/orderOfTask",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "description": "Only relevant for order jobs; cause=order resp.",
    "javaType": "com.sos.joc.model.job.OrderOfTask",
    "type": "object",
    "required": [
        "path",
        "orderId",
        "jobChain",
        "state"
    ],
    "properties": {
        "path": {
            "id": "schemas/common/path",
            "description": "absolute path based on live folder of a JobScheduler object.",
            "type": "string",
            "pattern": "/([^/]+/)*[^/]+"
        },
        "orderId": {
            "type": "string"
        },
        "jobChain": {
            "id": "schemas/common/path",
            "description": "absolute path based on live folder of a JobScheduler object.",
            "type": "string",
            "pattern": "/([^/]+/)*[^/]+"
        },
        "title": {
            "type": "string"
        },
        "state": {
            "description": "name of the current node",
            "type": "string"
        },
        "inProcessSince": {
            "id": "schemas/common/timestamp",
            "description": "Value is UTC timestamp in ISO 8601 YYYY-MM-DDThh:mm:ss.sZ or empty",
            "type": "string",
            "format": "date-time"
        }
    }
}