{ "$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-machine-list-item-schema.json", "title": "StateMachineListItem", "description": "Contains details about the state machine.", "type": "object", "properties": { "stateMachineArn": { "allOf": [ { "$ref": "#/components/schemas/Arn" }, { "description": "The Amazon Resource Name (ARN) that identifies the state machine." } ] }, "name": { "allOf": [ { "$ref": "#/components/schemas/Name" }, { "description": "

The name of the state machine.

A name must not contain:

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

" } ] }, "type": { "allOf": [ { "$ref": "#/components/schemas/StateMachineType" }, { "description": "

" } ] }, "creationDate": { "allOf": [ { "$ref": "#/components/schemas/Timestamp" }, { "description": "The date the state machine is created." } ] } }, "required": [ "stateMachineArn", "name", "type", "creationDate" ] }