Atlassian · Schema

ProjectIssueTypeMapping

The project and issue type mapping.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
issueTypeId string The ID of the issue type.
projectId string The ID of the project.
View JSON Schema on GitHub

JSON Schema

atlassian-projectissuetypemapping-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProjectIssueTypeMapping",
  "title": "ProjectIssueTypeMapping",
  "additionalProperties": false,
  "description": "The project and issue type mapping.",
  "properties": {
    "issueTypeId": {
      "description": "The ID of the issue type.",
      "type": "string",
      "writeOnly": true
    },
    "projectId": {
      "description": "The ID of the project.",
      "type": "string",
      "writeOnly": true
    }
  },
  "required": [
    "issueTypeId",
    "projectId"
  ],
  "type": "object",
  "writeOnly": true
}