{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/WorkflowTransitionRulesUpdateErrorDetails", "title": "WorkflowTransitionRulesUpdateErrorDetails", "additionalProperties": false, "description": "Details of any errors encountered while updating workflow transition rules for a workflow.", "properties": { "ruleUpdateErrors": { "additionalProperties": { "description": "A list of transition rule update errors, indexed by the transition rule ID. Any transition rule that appears here wasn't updated.", "items": { "description": "A list of transition rule update errors, indexed by the transition rule ID. Any transition rule that appears here wasn't updated.", "type": "string" }, "type": "array", "uniqueItems": true }, "description": "A list of transition rule update errors, indexed by the transition rule ID. Any transition rule that appears here wasn't updated.", "type": "object" }, "updateErrors": { "description": "The list of errors that specify why the workflow update failed. The workflow was not updated if the list contains any entries.", "items": { "description": "An error specifying why the workflow update failed.", "type": "string" }, "type": "array", "uniqueItems": true }, "workflowId": { "$ref": "#/components/schemas/WorkflowId" } }, "required": [ "ruleUpdateErrors", "updateErrors", "workflowId" ], "type": "object" }