Atlassian · Schema

WorkflowLayout

The starting point for the statuses 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-workflowlayout-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WorkflowLayout",
  "title": "WorkflowLayout",
  "additionalProperties": false,
  "description": "The starting point for the statuses in the workflow.",
  "nullable": true,
  "properties": {
    "x": {
      "description": "The x axis location.",
      "format": "double",
      "type": "number"
    },
    "y": {
      "description": "The y axis location.",
      "format": "double",
      "type": "number"
    }
  },
  "type": "object"
}