Atlassian · Schema

WorkflowStatus

Details of a workflow status.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
id string The ID of the issue status.
name string The name of the status in the workflow.
properties object Additional properties that modify the behavior of issues in this status. Supports the properties `jira.issue.editable` and `issueEditable` (deprecated) that indicate whether issues are editable.
View JSON Schema on GitHub

JSON Schema

atlassian-workflowstatus-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WorkflowStatus",
  "title": "WorkflowStatus",
  "additionalProperties": false,
  "description": "Details of a workflow status.",
  "properties": {
    "id": {
      "description": "The ID of the issue status.",
      "type": "string"
    },
    "name": {
      "description": "The name of the status in the workflow.",
      "type": "string"
    },
    "properties": {
      "additionalProperties": {
        "description": "Additional properties that modify the behavior of issues in this status. Supports the properties <code>jira.issue.editable</code> and <code>issueEditable</code> (deprecated) that indicate whether issues are editable."
      },
      "description": "Additional properties that modify the behavior of issues in this status. Supports the properties `jira.issue.editable` and `issueEditable` (deprecated) that indicate whether issues are editable.",
      "type": "object"
    }
  },
  "required": [
    "id",
    "name"
  ],
  "type": "object"
}