Atlassian · Schema

ProjectAndIssueTypePair

A project and issueType ID pair that identifies a status 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-projectandissuetypepair-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProjectAndIssueTypePair",
  "title": "ProjectAndIssueTypePair",
  "additionalProperties": false,
  "description": "A project and issueType ID pair that identifies a status mapping.",
  "properties": {
    "issueTypeId": {
      "description": "The ID of the issue type.",
      "type": "string"
    },
    "projectId": {
      "description": "The ID of the project.",
      "type": "string"
    }
  },
  "required": [
    "issueTypeId",
    "projectId"
  ],
  "type": "object"
}