Atlassian · Schema

RequiredMappingByWorkflows

The list of required status mappings by workflow.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
sourceWorkflowId string The ID of the source workflow.
statusIds array The status IDs requiring mapping.
targetWorkflowId string The ID of the target workflow.
View JSON Schema on GitHub

JSON Schema

atlassian-requiredmappingbyworkflows-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RequiredMappingByWorkflows",
  "title": "RequiredMappingByWorkflows",
  "additionalProperties": false,
  "description": "The list of required status mappings by workflow.",
  "properties": {
    "sourceWorkflowId": {
      "description": "The ID of the source workflow.",
      "type": "string"
    },
    "statusIds": {
      "description": "The status IDs requiring mapping.",
      "items": {
        "description": "The status IDs requiring mapping.",
        "type": "string"
      },
      "type": "array",
      "uniqueItems": true
    },
    "targetWorkflowId": {
      "description": "The ID of the target workflow.",
      "type": "string"
    }
  },
  "type": "object"
}