{ "$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-list-item-schema.json", "title": "ExecutionListItem", "description": "Contains details about an execution.", "type": "object", "properties": { "executionArn": { "allOf": [ { "$ref": "#/components/schemas/Arn" }, { "description": "The Amazon Resource Name (ARN) that identifies the execution." } ] }, "stateMachineArn": { "allOf": [ { "$ref": "#/components/schemas/Arn" }, { "description": "The Amazon Resource Name (ARN) of the state machine that ran the execution." } ] }, "name": { "allOf": [ { "$ref": "#/components/schemas/Name" }, { "description": "
The name of the execution.
A name must not contain:
white space
brackets < > { } [ ]
wildcard characters ? *
special characters \" # % \\ ^ | ~ ` $ & , ; : /
control characters (U+0000-001F, U+007F-009F)
To enable logging with CloudWatch Logs, the name should only contain 0-9, A-Z, a-z, - and _.
" } ] }, "status": { "allOf": [ { "$ref": "#/components/schemas/ExecutionStatus" }, { "description": "The current status of the execution." } ] }, "startDate": { "allOf": [ { "$ref": "#/components/schemas/Timestamp" }, { "description": "The date the execution started." } ] }, "stopDate": { "allOf": [ { "$ref": "#/components/schemas/Timestamp" }, { "description": "If the execution already ended, the date the execution stopped." } ] }, "mapRunArn": { "allOf": [ { "$ref": "#/components/schemas/LongArn" }, { "description": "The Amazon Resource Name (ARN) of a Map Run. This field is returned only ifmapRunArn was specified in the ListExecutions API action. If stateMachineArn was specified in ListExecutions, the mapRunArn isn't returned."
}
]
},
"itemCount": {
"allOf": [
{
"$ref": "#/components/schemas/UnsignedInteger"
},
{
"description": "The total number of items processed in a child workflow execution. This field is returned only if mapRunArn was specified in the ListExecutions API action. If stateMachineArn was specified in ListExecutions, the itemCount field isn't returned."
}
]
},
"stateMachineVersionArn": {
"allOf": [
{
"$ref": "#/components/schemas/Arn"
},
{
"description": "The Amazon Resource Name (ARN) of the state machine version associated with the execution.
If the state machine execution was started with an unqualified ARN, it returns null.
If the execution was started using a stateMachineAliasArn, both the stateMachineAliasArn and stateMachineVersionArn parameters contain the respective values.
The Amazon Resource Name (ARN) of the state machine alias used to start an execution.
If the state machine execution was started with an unqualified ARN or a version ARN, it returns null.
" } ] } }, "required": [ "executionArn", "stateMachineArn", "name", "status", "startDate" ] }