{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-step-functions/refs/heads/main/json-schema/amazon-step-functions-send-task-success-input-schema.json",
"title": "SendTaskSuccessInput",
"description": "SendTaskSuccessInput schema from Amazon Step Functions API",
"type": "object",
"properties": {
"taskToken": {
"allOf": [
{
"$ref": "#/components/schemas/TaskToken"
},
{
"description": "The token that represents this task. Task tokens are generated by Step Functions when tasks are assigned to a worker, or in the context object when a workflow enters a task state. See GetActivityTaskOutput$taskToken."
}
]
},
"output": {
"allOf": [
{
"$ref": "#/components/schemas/SensitiveData"
},
{
"description": "The JSON output of the task. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding."
}
]
}
},
"required": [
"taskToken",
"output"
]
}