Atlassian · Schema

WorkflowAssociationStatusMapping

The list of status mappings.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
newStatusId string The ID of the status in the new workflow.
oldStatusId string The ID of the status in the old workflow that isn't present in the new workflow.
View JSON Schema on GitHub

JSON Schema

atlassian-workflowassociationstatusmapping-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WorkflowAssociationStatusMapping",
  "title": "WorkflowAssociationStatusMapping",
  "additionalProperties": false,
  "description": "The list of status mappings.",
  "properties": {
    "newStatusId": {
      "description": "The ID of the status in the new workflow.",
      "type": "string"
    },
    "oldStatusId": {
      "description": "The ID of the status in the old workflow that isn't present in the new workflow.",
      "type": "string"
    }
  },
  "required": [
    "newStatusId",
    "oldStatusId"
  ],
  "type": "object"
}