Atlassian · Schema

WorkflowSchemeUpdateRequiredMappingsRequest

The request payload to get the required mappings for updating a workflow scheme.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
defaultWorkflowId string The ID of the new default workflow for this workflow scheme. Only used in global-scoped workflow schemes. If it isn't specified, is set to *Jira Workflow (jira)*.
id string The ID of the workflow scheme.
workflowsForIssueTypes array The new workflow to issue type mappings for this workflow scheme.
View JSON Schema on GitHub

JSON Schema

atlassian-workflowschemeupdaterequiredmappingsrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WorkflowSchemeUpdateRequiredMappingsRequest",
  "title": "WorkflowSchemeUpdateRequiredMappingsRequest",
  "additionalProperties": false,
  "description": "The request payload to get the required mappings for updating a workflow scheme.",
  "properties": {
    "defaultWorkflowId": {
      "description": "The ID of the new default workflow for this workflow scheme. Only used in global-scoped workflow schemes. If it isn't specified, is set to *Jira Workflow (jira)*.",
      "nullable": true,
      "type": "string"
    },
    "id": {
      "description": "The ID of the workflow scheme.",
      "type": "string"
    },
    "workflowsForIssueTypes": {
      "description": "The new workflow to issue type mappings for this workflow scheme.",
      "items": {
        "$ref": "#/components/schemas/WorkflowSchemeAssociation"
      },
      "type": "array"
    }
  },
  "required": [
    "id",
    "workflowsForIssueTypes"
  ],
  "type": "object"
}