Atlassian · Schema

WorkflowTransitionRulesUpdateErrors

Details of any errors encountered while updating workflow transition rules.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
updateResults array A list of workflows.
View JSON Schema on GitHub

JSON Schema

atlassian-workflowtransitionrulesupdateerrors-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WorkflowTransitionRulesUpdateErrors",
  "title": "WorkflowTransitionRulesUpdateErrors",
  "additionalProperties": false,
  "description": "Details of any errors encountered while updating workflow transition rules.",
  "properties": {
    "updateResults": {
      "description": "A list of workflows.",
      "items": {
        "$ref": "#/components/schemas/WorkflowTransitionRulesUpdateErrorDetails"
      },
      "type": "array"
    }
  },
  "required": [
    "updateResults"
  ],
  "type": "object"
}