Atlassian · Schema

WorkflowTransition

A workflow transition.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
id integer The transition ID.
name string The transition name.
View JSON Schema on GitHub

JSON Schema

atlassian-workflowtransition-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WorkflowTransition",
  "title": "WorkflowTransition",
  "additionalProperties": false,
  "description": "A workflow transition.",
  "properties": {
    "id": {
      "description": "The transition ID.",
      "format": "int32",
      "type": "integer"
    },
    "name": {
      "description": "The transition name.",
      "type": "string"
    }
  },
  "required": [
    "id",
    "name"
  ],
  "type": "object"
}