Atlassian · Schema

StatusMigration

The mapping of old to new status ID.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
newStatusReference string The new status ID.
oldStatusReference string The old status ID.
View JSON Schema on GitHub

JSON Schema

atlassian-statusmigration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StatusMigration",
  "title": "StatusMigration",
  "additionalProperties": true,
  "description": "The mapping of old to new status ID.",
  "properties": {
    "newStatusReference": {
      "description": "The new status ID.",
      "type": "string"
    },
    "oldStatusReference": {
      "description": "The old status ID.",
      "type": "string"
    }
  },
  "required": [
    "newStatusReference",
    "oldStatusReference"
  ],
  "type": "object"
}