Atlassian · Schema

AppWorkflowTransitionRule

A workflow transition rule.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
configuration object
id string The ID of the transition rule.
key string The key of the rule, as defined in the Connect or the Forge app descriptor.
transition object
View JSON Schema on GitHub

JSON Schema

atlassian-appworkflowtransitionrule-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AppWorkflowTransitionRule",
  "title": "AppWorkflowTransitionRule",
  "additionalProperties": false,
  "description": "A workflow transition rule.",
  "properties": {
    "configuration": {
      "$ref": "#/components/schemas/RuleConfiguration"
    },
    "id": {
      "description": "The ID of the transition rule.",
      "type": "string"
    },
    "key": {
      "description": "The key of the rule, as defined in the Connect or the Forge app descriptor.",
      "readOnly": true,
      "type": "string"
    },
    "transition": {
      "allOf": [
        {
          "$ref": "#/components/schemas/WorkflowTransition"
        }
      ],
      "readOnly": true
    }
  },
  "required": [
    "configuration",
    "id",
    "key"
  ],
  "type": "object"
}