Atlassian · Schema

WorkflowStatusLayout

The x and y location of the status in the workflow.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
x number The x axis location.
y number The y axis location.
View JSON Schema on GitHub

JSON Schema

atlassian-workflowstatuslayout-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WorkflowStatusLayout",
  "title": "WorkflowStatusLayout",
  "additionalProperties": false,
  "description": "The x and y location of the status in the workflow.",
  "nullable": true,
  "properties": {
    "x": {
      "description": "The x axis location.",
      "format": "double",
      "nullable": true,
      "type": "number"
    },
    "y": {
      "description": "The y axis location.",
      "format": "double",
      "nullable": true,
      "type": "number"
    }
  },
  "type": "object"
}