{
    "title": "order in task",
    "$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",
        "workflow",
        "state"
    ],
    "properties": {
        "path": {
            "description": "absolute path of a JobScheduler object.",
            "type": "string",
            "pattern": "^(/|(/[^/\\<>?:\"|*]+)+)$",
            "maxLength": 255,
            "minLength": 1
        },
        "orderId": {
            "type": "string"
        },
        "workflow": {
            "description": "absolute path of a JobScheduler object.",
            "type": "string",
            "pattern": "^(/|(/[^/\\<>?:\"|*]+)+)$",
            "maxLength": 255,
            "minLength": 1
        },
        "title": {
            "type": "string"
        },
        "state": {
            "description": "name of the current node",
            "type": "string"
        },
        "inProcessSince": {
            "description": "Value is UTC timestamp in ISO 8601 YYYY-MM-DDThh:mm:ss.sZ or empty",
            "type": "string",
            "format": "date-time"
        }
    }
}