Properties
| Name | Type | Description |
|---|---|---|
| taskId | string | |
| taskType | string | |
| taskDefName | string | |
| status | string | |
| workflowId | string | |
| workflowType | string | |
| correlationId | string | |
| scheduledTime | string | |
| startTime | string | |
| updateTime | string | |
| endTime | string | |
| input | string | |
| output | string | |
| reasonForIncompletion | string | |
| queueWaitTime | integer | |
| domain | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "TaskSummary",
"type": "object",
"properties": {
"taskId": {
"type": "string"
},
"taskType": {
"type": "string"
},
"taskDefName": {
"type": "string"
},
"status": {
"type": "string"
},
"workflowId": {
"type": "string"
},
"workflowType": {
"type": "string"
},
"correlationId": {
"type": "string"
},
"scheduledTime": {
"type": "string"
},
"startTime": {
"type": "string"
},
"updateTime": {
"type": "string"
},
"endTime": {
"type": "string"
},
"input": {
"type": "string"
},
"output": {
"type": "string"
},
"reasonForIncompletion": {
"type": "string"
},
"queueWaitTime": {
"type": "integer"
},
"domain": {
"type": "string"
}
}
}