Atlassian · Schema

DashboardGadgetUpdateRequest

The details of the gadget to update.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
color string The color of the gadget. Should be one of `blue`, `red`, `yellow`, `green`, `cyan`, `purple`, `gray`, or `white`.
position object The position of the gadget.
title string The title of the gadget.
View JSON Schema on GitHub

JSON Schema

atlassian-dashboardgadgetupdaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DashboardGadgetUpdateRequest",
  "title": "DashboardGadgetUpdateRequest",
  "additionalProperties": false,
  "description": "The details of the gadget to update.",
  "properties": {
    "color": {
      "description": "The color of the gadget. Should be one of `blue`, `red`, `yellow`, `green`, `cyan`, `purple`, `gray`, or `white`.",
      "type": "string",
      "writeOnly": true
    },
    "position": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DashboardGadgetPosition"
        }
      ],
      "description": "The position of the gadget."
    },
    "title": {
      "description": "The title of the gadget.",
      "type": "string",
      "writeOnly": true
    }
  },
  "type": "object"
}