Atlassian · Schema

PublishDraftWorkflowScheme

Details about the status mappings for publishing a draft workflow scheme.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
statusMappings array Mappings of statuses to new statuses for issue types.
View JSON Schema on GitHub

JSON Schema

atlassian-publishdraftworkflowscheme-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PublishDraftWorkflowScheme",
  "title": "PublishDraftWorkflowScheme",
  "additionalProperties": false,
  "description": "Details about the status mappings for publishing a draft workflow scheme.",
  "properties": {
    "statusMappings": {
      "description": "Mappings of statuses to new statuses for issue types.",
      "items": {
        "$ref": "#/components/schemas/StatusMapping"
      },
      "type": "array",
      "uniqueItems": true
    }
  },
  "type": "object"
}