{
"$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-execution-aborted-event-details-schema.json",
"title": "ExecutionAbortedEventDetails",
"description": "Contains details about an abort of an execution.",
"type": "object",
"properties": {
"error": {
"allOf": [
{
"$ref": "#/components/schemas/SensitiveError"
},
{
"description": "The error code of the failure."
}
]
},
"cause": {
"allOf": [
{
"$ref": "#/components/schemas/SensitiveCause"
},
{
"description": "A more detailed explanation of the cause of the failure."
}
]
}
}
}