{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/WorkflowTransitionRules", "title": "WorkflowTransitionRules", "additionalProperties": false, "description": "A workflow with transition rules.", "properties": { "conditions": { "description": "The list of conditions within the workflow.", "items": { "$ref": "#/components/schemas/AppWorkflowTransitionRule" }, "type": "array" }, "postFunctions": { "description": "The list of post functions within the workflow.", "items": { "$ref": "#/components/schemas/AppWorkflowTransitionRule" }, "type": "array" }, "validators": { "description": "The list of validators within the workflow.", "items": { "$ref": "#/components/schemas/AppWorkflowTransitionRule" }, "type": "array" }, "workflowId": { "$ref": "#/components/schemas/WorkflowId" } }, "required": [ "workflowId" ], "type": "object" }