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