A collection of transition rules.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/WorkflowRules", "title": "WorkflowRules", "additionalProperties": false, "description": "A collection of transition rules.", "properties": { "conditionsTree": { "$ref": "#/components/schemas/WorkflowCondition" }, "postFunctions": { "description": "The workflow post functions.", "items": { "$ref": "#/components/schemas/WorkflowTransitionRule" }, "type": "array" }, "validators": { "description": "The workflow validators.", "items": { "$ref": "#/components/schemas/WorkflowTransitionRule" }, "type": "array" } }, "type": "object" }