Atlassian · Schema

StatusLayoutUpdate

The statuses associated with this workflow.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
layout object
properties object The properties for this status layout.
statusReference string A unique ID which the status will use to refer to this layout configuration.
View JSON Schema on GitHub

JSON Schema

atlassian-statuslayoutupdate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StatusLayoutUpdate",
  "title": "StatusLayoutUpdate",
  "additionalProperties": true,
  "description": "The statuses associated with this workflow.",
  "properties": {
    "layout": {
      "$ref": "#/components/schemas/WorkflowLayout"
    },
    "properties": {
      "additionalProperties": {
        "description": "The properties for this status layout.",
        "type": "string"
      },
      "description": "The properties for this status layout.",
      "type": "object"
    },
    "statusReference": {
      "description": "A unique ID which the status will use to refer to this layout configuration.",
      "type": "string"
    }
  },
  "required": [
    "properties",
    "statusReference"
  ],
  "type": "object"
}