Atlassian · Schema

DefaultWorkflow

Details about the default workflow.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
updateDraftIfNeeded boolean Whether a draft workflow scheme is created or updated when updating an active workflow scheme. The draft is updated with the new default workflow. Defaults to `false`.
workflow string The name of the workflow to set as the default workflow.
View JSON Schema on GitHub

JSON Schema

atlassian-defaultworkflow-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DefaultWorkflow",
  "title": "DefaultWorkflow",
  "additionalProperties": false,
  "description": "Details about the default workflow.",
  "properties": {
    "updateDraftIfNeeded": {
      "description": "Whether a draft workflow scheme is created or updated when updating an active workflow scheme. The draft is updated with the new default workflow. Defaults to `false`.",
      "type": "boolean"
    },
    "workflow": {
      "description": "The name of the workflow to set as the default workflow.",
      "type": "string"
    }
  },
  "required": [
    "workflow"
  ],
  "type": "object"
}