Atlassian · Schema

StatusMetadata

The details of the statuses in the associated workflows.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
category string The category of the status.
id string The ID of the status.
name string The name of the status.
View JSON Schema on GitHub

JSON Schema

atlassian-statusmetadata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StatusMetadata",
  "title": "StatusMetadata",
  "additionalProperties": false,
  "description": "The details of the statuses in the associated workflows.",
  "properties": {
    "category": {
      "description": "The category of the status.",
      "enum": [
        "TODO",
        "IN_PROGRESS",
        "DONE"
      ],
      "type": "string"
    },
    "id": {
      "description": "The ID of the status.",
      "type": "string"
    },
    "name": {
      "description": "The name of the status.",
      "type": "string"
    }
  },
  "type": "object"
}