{ "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:

" } ] }, "cause": { "allOf": [ { "$ref": "#/components/schemas/WorkflowExecutionTerminatedCause" }, { "description": "If set, indicates that the workflow execution was automatically terminated, and specifies the cause. This happens if the parent workflow execution times out or is terminated and the child policy is set to terminate child executions." } ] } }, "description": "Provides the details of the WorkflowExecutionTerminated event.", "$schema": "http://json-schema.org/draft-07/schema#", "title": "WorkflowExecutionTerminatedEventAttributes" }