StopExecutionInput schema from Amazon Step Functions API
{ "$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-stop-execution-input-schema.json", "title": "StopExecutionInput", "description": "StopExecutionInput schema from Amazon Step Functions API", "type": "object", "properties": { "executionArn": { "allOf": [ { "$ref": "#/components/schemas/Arn" }, { "description": "The Amazon Resource Name (ARN) of the execution to stop." } ] }, "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." } ] } }, "required": [ "executionArn" ] }