Atlassian · Schema

WorkflowTransitionRulesUpdate

Details about a workflow configuration update request.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
workflows array The list of workflows with transition rules to update.
View JSON Schema on GitHub

JSON Schema

atlassian-workflowtransitionrulesupdate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WorkflowTransitionRulesUpdate",
  "title": "WorkflowTransitionRulesUpdate",
  "additionalProperties": false,
  "description": "Details about a workflow configuration update request.",
  "properties": {
    "workflows": {
      "description": "The list of workflows with transition rules to update.",
      "items": {
        "$ref": "#/components/schemas/WorkflowTransitionRules"
      },
      "type": "array"
    }
  },
  "required": [
    "workflows"
  ],
  "type": "object"
}