WorkflowType

Represents a workflow type.

AutomationTask CoordinationWorkflow

Properties

Name Type Description
name object
version object
View JSON Schema on GitHub

JSON Schema

amazon-swf-workflowtype-schema.json Raw ↑
{
  "type": "object",
  "required": [
    "name",
    "version"
  ],
  "properties": {
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Name"
        },
        {
          "description": "<p> The name of the workflow type.</p> <note> <p>The combination of workflow type name and version must be unique with in a domain.</p> </note>"
        }
      ]
    },
    "version": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Version"
        },
        {
          "description": "<p> The version of the workflow type.</p> <note> <p>The combination of workflow type name and version must be unique with in a domain.</p> </note>"
        }
      ]
    }
  },
  "description": "Represents a workflow type.",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "WorkflowType"
}