Atlassian · Schema

WorkflowTransitionRules

A workflow with transition rules.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
conditions array The list of conditions within the workflow.
postFunctions array The list of post functions within the workflow.
validators array The list of validators within the workflow.
workflowId object
View JSON Schema on GitHub

JSON Schema

atlassian-workflowtransitionrules-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WorkflowTransitionRules",
  "title": "WorkflowTransitionRules",
  "additionalProperties": false,
  "description": "A workflow with transition rules.",
  "properties": {
    "conditions": {
      "description": "The list of conditions within the workflow.",
      "items": {
        "$ref": "#/components/schemas/AppWorkflowTransitionRule"
      },
      "type": "array"
    },
    "postFunctions": {
      "description": "The list of post functions within the workflow.",
      "items": {
        "$ref": "#/components/schemas/AppWorkflowTransitionRule"
      },
      "type": "array"
    },
    "validators": {
      "description": "The list of validators within the workflow.",
      "items": {
        "$ref": "#/components/schemas/AppWorkflowTransitionRule"
      },
      "type": "array"
    },
    "workflowId": {
      "$ref": "#/components/schemas/WorkflowId"
    }
  },
  "required": [
    "workflowId"
  ],
  "type": "object"
}