{
  "type": "object",
  "properties": {
    "name": {
      "description": "Name of the issue type.",
      "type": "string"
    },
    "is_enabled": {
      "description": "Whether or not the issue type is enabled at the organization level.",
      "type": "boolean"
    },
    "description": {
      "description": "Description of the issue type.",
      "type": [
        "string",
        "null"
      ]
    },
    "color": {
      "description": "Color for the issue type.",
      "type": [
        "string",
        "null"
      ],
      "enum": [
        "gray",
        "blue",
        "green",
        "yellow",
        "orange",
        "red",
        "pink",
        "purple",
        null
      ]
    }
  },
  "required": [
    "name",
    "is_enabled"
  ],
  "$schema": "https://json-schema.org/draft/2019-09/schema"
}