Atlassian · Schema

AvailableDashboardGadget

The details of the available dashboard gadget.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
moduleKey string The module key of the gadget type.
title string The title of the gadget.
uri string The URI of the gadget type.
View JSON Schema on GitHub

JSON Schema

atlassian-availabledashboardgadget-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AvailableDashboardGadget",
  "title": "AvailableDashboardGadget",
  "additionalProperties": false,
  "description": "The details of the available dashboard gadget.",
  "properties": {
    "moduleKey": {
      "description": "The module key of the gadget type.",
      "readOnly": true,
      "type": "string"
    },
    "title": {
      "description": "The title of the gadget.",
      "readOnly": true,
      "type": "string"
    },
    "uri": {
      "description": "The URI of the gadget type.",
      "readOnly": true,
      "type": "string"
    }
  },
  "required": [
    "title"
  ],
  "type": "object"
}