{ "type": "object", "required": [ "execution", "workflowType", "startTimestamp", "executionStatus" ], "properties": { "execution": { "allOf": [ { "$ref": "#/components/schemas/WorkflowExecution" }, { "description": "The workflow execution this information is about." } ] }, "workflowType": { "allOf": [ { "$ref": "#/components/schemas/WorkflowType" }, { "description": "The type of the workflow execution." } ] }, "startTimestamp": { "allOf": [ { "$ref": "#/components/schemas/Timestamp" }, { "description": "The time when the execution was started." } ] }, "closeTimestamp": { "allOf": [ { "$ref": "#/components/schemas/Timestamp" }, { "description": "The time when the workflow execution was closed. Set only if the execution status is CLOSED." } ] }, "executionStatus": { "allOf": [ { "$ref": "#/components/schemas/ExecutionStatus" }, { "description": "The current status of the execution." } ] }, "closeStatus": { "allOf": [ { "$ref": "#/components/schemas/CloseStatus" }, { "description": "
If the execution status is closed then this specifies how the execution was closed:
COMPLETED \u2013 the execution was successfully completed.
CANCELED \u2013 the execution was canceled.Cancellation allows the implementation to gracefully clean up before the execution is closed.
TERMINATED \u2013 the execution was force terminated.
FAILED \u2013 the execution failed to complete.
TIMED_OUT \u2013 the execution did not complete in the alloted time and was automatically timed out.
CONTINUED_AS_NEW \u2013 the execution is logically continued. This means the current execution was completed and a new execution was started to carry on the workflow.