Sisense · Schema

Sisense Dashboard

A Sisense analytics dashboard containing widgets and visualization configurations.

AnalyticsBusiness IntelligenceDashboardsData ModelsEmbedded Analytics

Properties

Name Type Description
oid string Dashboard unique identifier
title string Dashboard display title
desc string Dashboard description
owner string User ID of the dashboard owner
folder string Parent folder ID for dashboard organization
shares array List of share permissions granting access to users and groups
created string Dashboard creation timestamp
lastUpdated string Last modification timestamp
type string Dashboard type identifier
View JSON Schema on GitHub

JSON Schema

sisense-dashboard-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://developer.sisense.com/schemas/dashboard",
  "title": "Sisense Dashboard",
  "description": "A Sisense analytics dashboard containing widgets and visualization configurations.",
  "type": "object",
  "properties": {
    "oid": {
      "type": "string",
      "description": "Dashboard unique identifier"
    },
    "title": {
      "type": "string",
      "description": "Dashboard display title"
    },
    "desc": {
      "type": "string",
      "description": "Dashboard description"
    },
    "owner": {
      "type": "string",
      "description": "User ID of the dashboard owner"
    },
    "folder": {
      "type": "string",
      "description": "Parent folder ID for dashboard organization"
    },
    "shares": {
      "type": "array",
      "description": "List of share permissions granting access to users and groups",
      "items": {
        "type": "object",
        "properties": {
          "shareId": {"type": "string"},
          "type": {"type": "string", "enum": ["user", "group"]},
          "rule": {"type": "string", "enum": ["view", "edit"]}
        }
      }
    },
    "created": {
      "type": "string",
      "format": "date-time",
      "description": "Dashboard creation timestamp"
    },
    "lastUpdated": {
      "type": "string",
      "format": "date-time",
      "description": "Last modification timestamp"
    },
    "type": {
      "type": "string",
      "description": "Dashboard type identifier"
    }
  },
  "required": ["oid", "title"]
}