{ "$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-alias-list-item-schema.json", "title": "StateMachineAliasListItem", "description": "Contains details about a specific state machine alias.", "type": "object", "properties": { "stateMachineAliasArn": { "allOf": [ { "$ref": "#/components/schemas/LongArn" }, { "description": "The Amazon Resource Name (ARN) that identifies a state machine alias. The alias ARN is a combination of state machine ARN and the alias name separated by a colon (:). For example, stateMachineARN:PROD." } ] }, "creationDate": { "allOf": [ { "$ref": "#/components/schemas/Timestamp" }, { "description": "The creation date of a state machine alias." } ] } }, "required": [ "stateMachineAliasArn", "creationDate" ] }