{ "$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-state-exited-event-details-schema.json", "title": "StateExitedEventDetails", "description": "Contains details about an exit from a state during an execution.", "type": "object", "properties": { "name": { "allOf": [ { "$ref": "#/components/schemas/Name" }, { "description": "

The name of the state.

A name must not contain:

To enable logging with CloudWatch Logs, the name should only contain 0-9, A-Z, a-z, - and _.

" } ] }, "output": { "allOf": [ { "$ref": "#/components/schemas/SensitiveData" }, { "description": "The JSON output data of the state. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding." } ] }, "outputDetails": { "allOf": [ { "$ref": "#/components/schemas/HistoryEventExecutionDataDetails" }, { "description": "Contains details about the output of an execution history event." } ] } }, "required": [ "name" ] }