Atlassian · Schema

DashboardGadgetResponse

The list of gadgets on the dashboard.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
gadgets array The list of gadgets.
View JSON Schema on GitHub

JSON Schema

atlassian-dashboardgadgetresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DashboardGadgetResponse",
  "title": "DashboardGadgetResponse",
  "additionalProperties": false,
  "description": "The list of gadgets on the dashboard.",
  "properties": {
    "gadgets": {
      "description": "The list of gadgets.",
      "items": {
        "$ref": "#/components/schemas/DashboardGadget"
      },
      "readOnly": true,
      "type": "array"
    }
  },
  "required": [
    "gadgets"
  ],
  "type": "object"
}