Atlassian · Schema

WorkflowReferenceStatus

The statuses referenced in the workflow.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
deprecated boolean Indicates if the status is deprecated.
layout object
properties object The properties associated with the status.
statusReference string The reference of the status.
View JSON Schema on GitHub

JSON Schema

atlassian-workflowreferencestatus-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WorkflowReferenceStatus",
  "title": "WorkflowReferenceStatus",
  "additionalProperties": false,
  "description": "The statuses referenced in the workflow.",
  "properties": {
    "deprecated": {
      "description": "Indicates if the status is deprecated.",
      "type": "boolean"
    },
    "layout": {
      "$ref": "#/components/schemas/WorkflowStatusLayout"
    },
    "properties": {
      "additionalProperties": {
        "description": "The properties associated with the status.",
        "type": "string"
      },
      "description": "The properties associated with the status.",
      "type": "object"
    },
    "statusReference": {
      "description": "The reference of the status.",
      "type": "string"
    }
  },
  "type": "object"
}