Amazon Step Functions · JSON Structure

Amazon Step Functions State Machine Version List Item Structure

Contains details about a specific state machine version.

Type: object Properties: 2 Required: 2
OrchestrationServerlessState MachineWorkflow

StateMachineVersionListItem is a JSON Structure definition published by Amazon Step Functions, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

stateMachineVersionArn creationDate

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "type": "object",
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-step-functions/refs/heads/main/json-structure/amazon-step-functions-state-machine-version-list-item-structure.json",
  "name": "StateMachineVersionListItem",
  "description": "Contains details about a specific state machine version.",
  "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, <code>stateMachineARN:1</code>."
        }
      ]
    },
    "creationDate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The creation date of a state machine version."
        }
      ]
    }
  },
  "required": [
    "stateMachineVersionArn",
    "creationDate"
  ]
}