Atlassian · Schema

WorkflowCondition

The workflow transition rule conditions tree.

CodeCollaborationPlatformProductivitySoftware Development
View JSON Schema on GitHub

JSON Schema

atlassian-workflowcondition-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WorkflowCondition",
  "title": "WorkflowCondition",
  "additionalProperties": false,
  "description": "The workflow transition rule conditions tree.",
  "discriminator": {
    "mapping": {
      "compound": "#/components/schemas/WorkflowCompoundCondition",
      "simple": "#/components/schemas/WorkflowSimpleCondition"
    },
    "propertyName": "nodeType"
  },
  "oneOf": [
    {
      "$ref": "#/components/schemas/WorkflowSimpleCondition"
    },
    {
      "$ref": "#/components/schemas/WorkflowCompoundCondition"
    }
  ],
  "type": "object"
}