Details about a workflow configuration update request.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/WorkflowTransitionRulesDetails", "title": "WorkflowTransitionRulesDetails", "additionalProperties": false, "description": "Details about a workflow configuration update request.", "properties": { "workflowId": { "$ref": "#/components/schemas/WorkflowId" }, "workflowRuleIds": { "description": "The list of connect workflow rule IDs.", "items": { "description": "The list of connect workflow rule IDs.", "type": "string" }, "type": "array", "uniqueItems": true } }, "required": [ "workflowId", "workflowRuleIds" ], "type": "object" }