Atlassian · Schema

WorkflowCompoundCondition

A compound workflow transition rule condition. This object returns `nodeType` as `compound`.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
conditions array The list of workflow conditions.
nodeType string
operator string The compound condition operator.
View JSON Schema on GitHub

JSON Schema

atlassian-workflowcompoundcondition-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WorkflowCompoundCondition",
  "title": "WorkflowCompoundCondition",
  "description": "A compound workflow transition rule condition. This object returns `nodeType` as `compound`.",
  "properties": {
    "conditions": {
      "description": "The list of workflow conditions.",
      "items": {
        "$ref": "#/components/schemas/WorkflowCondition"
      },
      "type": "array"
    },
    "nodeType": {
      "type": "string"
    },
    "operator": {
      "description": "The compound condition operator.",
      "enum": [
        "AND",
        "OR"
      ],
      "type": "string"
    }
  },
  "required": [
    "conditions",
    "nodeType",
    "operator"
  ],
  "type": "object"
}