Atlassian · Schema

WorkflowTransitionRulesUpdateErrorDetails

Details of any errors encountered while updating workflow transition rules for a workflow.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
ruleUpdateErrors object A list of transition rule update errors, indexed by the transition rule ID. Any transition rule that appears here wasn't updated.
updateErrors array The list of errors that specify why the workflow update failed. The workflow was not updated if the list contains any entries.
workflowId object
View JSON Schema on GitHub

JSON Schema

atlassian-workflowtransitionrulesupdateerrordetails-schema.json Raw ↑
{
  "$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"
}