{
"type": "object",
"required": [
"taskToken"
],
"title": "RespondActivityTaskCompletedInput",
"properties": {
"taskToken": {
"allOf": [
{
"$ref": "#/components/schemas/TaskToken"
},
{
"description": "<p>The <code>taskToken</code> of the <a>ActivityTask</a>.</p> <important> <p> <code>taskToken</code> is generated by the service and should be treated as an opaque value. If the task is passed to another process, its <code>taskToken</code> must also be passed. This enables it to provide its progress and respond with results.</p> </important>"
}
]
},
"result": {
"allOf": [
{
"$ref": "#/components/schemas/Data"
},
{
"description": "The result of the activity task. It is a free form string that is implementation specific."
}
]
}
},
"$schema": "http://json-schema.org/draft-07/schema#"
}