Atlassian · Schema

StatusCategory

A status category.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
colorName string The name of the color used to represent the status category.
id integer The ID of the status category.
key string The key of the status category.
name string The name of the status category.
self string The URL of the status category.
View JSON Schema on GitHub

JSON Schema

atlassian-statuscategory-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StatusCategory",
  "title": "StatusCategory",
  "additionalProperties": true,
  "description": "A status category.",
  "properties": {
    "colorName": {
      "description": "The name of the color used to represent the status category.",
      "readOnly": true,
      "type": "string"
    },
    "id": {
      "description": "The ID of the status category.",
      "format": "int64",
      "readOnly": true,
      "type": "integer"
    },
    "key": {
      "description": "The key of the status category.",
      "readOnly": true,
      "type": "string"
    },
    "name": {
      "description": "The name of the status category.",
      "readOnly": true,
      "type": "string"
    },
    "self": {
      "description": "The URL of the status category.",
      "readOnly": true,
      "type": "string"
    }
  },
  "type": "object"
}