Atlassian · Schema

DashboardGadgetPosition

Details of a gadget position.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
The column position of the gadget. integer
The row position of the gadget. integer
View JSON Schema on GitHub

JSON Schema

atlassian-dashboardgadgetposition-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DashboardGadgetPosition",
  "title": "DashboardGadgetPosition",
  "additionalProperties": false,
  "description": "Details of a gadget position.",
  "properties": {
    "The column position of the gadget.": {
      "format": "int32",
      "type": "integer"
    },
    "The row position of the gadget.": {
      "format": "int32",
      "type": "integer"
    }
  },
  "required": [
    "The column position of the gadget.",
    "The row position of the gadget."
  ],
  "type": "object",
  "writeOnly": true
}