Developer
Get Support
Sign in
Get Support
Sign in
DOCUMENTATION
Cloud
Data Center
Resources
Sign in
Sign in
DOCUMENTATION
Cloud
Data Center
Resources
Sign in
Last updated Oct 30, 2025

Composite Condition

Composite Conditions are composed of a collection of Single Condition / Composite Conditions and a type attribute. The conditions to compose using the specific logical operator.

Example

1
2
{
  "conditions": [
    {
      "or": [
        {
          "condition": "can_attach_file_to_issue",
          "invert": false
        },
        {
          "condition": "is_issue_assigned_to_current_user",
          "invert": false
        }
      ]
    },
    {
      "condition": "user_is_logged_in",
      "invert": false
    }
  ]
}

Properties

conditions

Type[Single Condition, Composite Condition, ...]
DescriptionThe conditions to compose using the specific logical operator.

type

Typestring
DescriptionDefines what logical operator is used to evaluate its collection of condition elements.

Rate this page: