Atlassian · Schema

DashboardDetails

Details of a dashboard.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
description string The description of the dashboard.
editPermissions array The edit permissions for the dashboard.
name string The name of the dashboard.
sharePermissions array The share permissions for the dashboard.
View JSON Schema on GitHub

JSON Schema

atlassian-dashboarddetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DashboardDetails",
  "title": "DashboardDetails",
  "additionalProperties": false,
  "description": "Details of a dashboard.",
  "properties": {
    "description": {
      "description": "The description of the dashboard.",
      "type": "string"
    },
    "editPermissions": {
      "description": "The edit permissions for the dashboard.",
      "items": {
        "$ref": "#/components/schemas/SharePermission"
      },
      "type": "array"
    },
    "name": {
      "description": "The name of the dashboard.",
      "type": "string"
    },
    "sharePermissions": {
      "description": "The share permissions for the dashboard.",
      "items": {
        "$ref": "#/components/schemas/SharePermission"
      },
      "type": "array"
    }
  },
  "required": [
    "editPermissions",
    "name",
    "sharePermissions"
  ],
  "type": "object"
}