{ "type": "object", "required": [ "taskToken" ], "title": "RespondActivityTaskFailedInput", "properties": { "taskToken": { "allOf": [ { "$ref": "#/components/schemas/TaskToken" }, { "description": "

The taskToken of the ActivityTask.

taskToken is generated by the service and should be treated as an opaque value. If the task is passed to another process, its taskToken must also be passed. This enables it to provide its progress and respond with results.

" } ] }, "reason": { "allOf": [ { "$ref": "#/components/schemas/FailureReason" }, { "description": "Description of the error that may assist in diagnostics." } ] }, "details": { "allOf": [ { "$ref": "#/components/schemas/Data" }, { "description": " Detailed information about the failure." } ] } }, "$schema": "http://json-schema.org/draft-07/schema#" }