Atlassian · Schema

StatusMapping

Details about the mapping from a status to a new status for an issue type.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
issueTypeId string The ID of the issue type.
newStatusId string The ID of the new status.
statusId string The ID of the status.
View JSON Schema on GitHub

JSON Schema

atlassian-statusmapping-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StatusMapping",
  "title": "StatusMapping",
  "additionalProperties": false,
  "description": "Details about the mapping from a status to a new status for an issue type.",
  "properties": {
    "issueTypeId": {
      "description": "The ID of the issue type.",
      "type": "string"
    },
    "newStatusId": {
      "description": "The ID of the new status.",
      "type": "string"
    },
    "statusId": {
      "description": "The ID of the status.",
      "type": "string"
    }
  },
  "required": [
    "issueTypeId",
    "newStatusId",
    "statusId"
  ],
  "type": "object"
}