{ "$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" }