{
    "title": "task object which is enqueued",
    "id": "schemas/job/queuedTask",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.job.QueuedTask",
    "type": "object",
    "required": [
        "taskId",
        "enqueued"
    ],
    "properties": {
        "taskId": {
            "type": "string"
        },
        "enqueued": {
            "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"
        },
        "plannedStart": {
            "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"
        }
    }
}