Atlassian · Schema

IssueTypeWorkflowMapping

Details about the mapping between an issue type and a workflow.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
issueType string The ID of the issue type. Not required if updating the issue type-workflow mapping.
updateDraftIfNeeded boolean Set to true to create or update the draft of a workflow scheme and update the mapping in the draft, when the workflow scheme cannot be edited. Defaults to `false`. Only applicable when updating the wo
workflow string The name of the workflow.
View JSON Schema on GitHub

JSON Schema

atlassian-issuetypeworkflowmapping-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IssueTypeWorkflowMapping",
  "title": "IssueTypeWorkflowMapping",
  "additionalProperties": false,
  "description": "Details about the mapping between an issue type and a workflow.",
  "properties": {
    "issueType": {
      "description": "The ID of the issue type. Not required if updating the issue type-workflow mapping.",
      "type": "string"
    },
    "updateDraftIfNeeded": {
      "description": "Set to true to create or update the draft of a workflow scheme and update the mapping in the draft, when the workflow scheme cannot be edited. Defaults to `false`. Only applicable when updating the workflow-issue types mapping.",
      "type": "boolean"
    },
    "workflow": {
      "description": "The name of the workflow.",
      "type": "string"
    }
  },
  "type": "object"
}