Atlassian · Schema

IssueTypeInfo

Details of an issue type.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
avatarId integer The avatar of the issue type.
id integer The ID of the issue type.
name string The name of the issue type.
View JSON Schema on GitHub

JSON Schema

atlassian-issuetypeinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IssueTypeInfo",
  "title": "IssueTypeInfo",
  "additionalProperties": false,
  "description": "Details of an issue type.",
  "properties": {
    "avatarId": {
      "description": "The avatar of the issue type.",
      "format": "int64",
      "readOnly": true,
      "type": "integer"
    },
    "id": {
      "description": "The ID of the issue type.",
      "format": "int64",
      "readOnly": true,
      "type": "integer"
    },
    "name": {
      "description": "The name of the issue type.",
      "readOnly": true,
      "type": "string"
    }
  },
  "type": "object"
}