Atlassian · Schema

IssueTypeToContextMapping

Mapping of an issue type to a context.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
contextId string The ID of the context.
isAnyIssueType boolean Whether the context is mapped to any issue type.
issueTypeId string The ID of the issue type.
View JSON Schema on GitHub

JSON Schema

atlassian-issuetypetocontextmapping-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IssueTypeToContextMapping",
  "title": "IssueTypeToContextMapping",
  "additionalProperties": false,
  "description": "Mapping of an issue type to a context.",
  "properties": {
    "contextId": {
      "description": "The ID of the context.",
      "type": "string"
    },
    "isAnyIssueType": {
      "description": "Whether the context is mapped to any issue type.",
      "type": "boolean"
    },
    "issueTypeId": {
      "description": "The ID of the issue type.",
      "type": "string"
    }
  },
  "required": [
    "contextId"
  ],
  "type": "object"
}