Atlassian · Schema

StatusCreate

Details of the status being created.

CodeCollaborationPlatformProductivitySoftware Development

Properties

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

JSON Schema

atlassian-statuscreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StatusCreate",
  "title": "StatusCreate",
  "additionalProperties": false,
  "description": "Details of the status being created.",
  "properties": {
    "description": {
      "description": "The description of the status.",
      "type": "string"
    },
    "name": {
      "description": "The name of the status.",
      "maxLength": 255,
      "type": "string"
    },
    "statusCategory": {
      "description": "The category of the status.",
      "enum": [
        "TODO",
        "IN_PROGRESS",
        "DONE"
      ],
      "type": "string"
    }
  },
  "required": [
    "name",
    "statusCategory"
  ],
  "type": "object"
}