{ "type": "object", "required": [ "childPolicy" ], "properties": { "reason": { "allOf": [ { "$ref": "#/components/schemas/TerminateReason" }, { "description": "The reason provided for the termination." } ] }, "details": { "allOf": [ { "$ref": "#/components/schemas/Data" }, { "description": "The details provided for the termination." } ] }, "childPolicy": { "allOf": [ { "$ref": "#/components/schemas/ChildPolicy" }, { "description": "
The policy used for the child workflow executions of this workflow execution.
The supported child policies are:
TERMINATE \u2013 The child executions are terminated.
REQUEST_CANCEL \u2013 A request to cancel is attempted for each child execution by recording a WorkflowExecutionCancelRequested event in its history. It is up to the decider to take appropriate actions when it receives an execution history with this event.
ABANDON \u2013 No action is taken. The child executions continue to run.
WorkflowExecutionTerminated event.",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "WorkflowExecutionTerminatedEventAttributes"
}