The workflow transition rule conditions tree.
{ "$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" }