A workflow transition rule.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ConnectWorkflowTransitionRule", "title": "ConnectWorkflowTransitionRule", "description": "A workflow transition rule.", "properties": { "configuration": { "$ref": "#/components/schemas/RuleConfiguration" }, "id": { "description": "The ID of the transition rule.", "example": "123", "type": "string" }, "key": { "description": "The key of the rule, as defined in the Connect app descriptor.", "example": "WorkflowKey", "type": "string" }, "transition": { "$ref": "#/components/schemas/WorkflowTransition" } }, "required": [ "configuration", "id", "key" ], "type": "object" }