{
"$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"
}