Atlassian · Schema

RequiredMappingByIssueType

The list of required status mappings by issue type.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
issueTypeId string The ID of the issue type.
statusIds array The status IDs requiring mapping.
View JSON Schema on GitHub

JSON Schema

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