Atlassian · Schema

ProjectIssueTypes

Use the optional `workflows.usages` expand to get additional information about the projects and issue types associated with the requested workflows.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
issueTypes array IDs of the issue types
project object
View JSON Schema on GitHub

JSON Schema

atlassian-projectissuetypes-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProjectIssueTypes",
  "title": "ProjectIssueTypes",
  "additionalProperties": false,
  "description": "Use the optional `workflows.usages` expand to get additional information about the projects and issue types associated with the requested workflows.",
  "properties": {
    "issueTypes": {
      "description": "IDs of the issue types",
      "items": {
        "description": "IDs of the issue types",
        "nullable": true,
        "type": "string"
      },
      "nullable": true,
      "type": "array",
      "uniqueItems": true
    },
    "project": {
      "$ref": "#/components/schemas/ProjectId"
    }
  },
  "type": "object"
}