Power BI · Schema

CreateDashboardRequest

Request body for creating a dashboard

AnalyticsBusiness IntelligenceDashboardsData AnalysisReportingVisualization

Properties

Name Type Description
name string The display name of the new dashboard
View JSON Schema on GitHub

JSON Schema

power-bi-createdashboardrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateDashboardRequest",
  "title": "CreateDashboardRequest",
  "type": "object",
  "required": [
    "name"
  ],
  "description": "Request body for creating a dashboard",
  "properties": {
    "name": {
      "type": "string",
      "description": "The display name of the new dashboard",
      "example": "Example Title"
    }
  }
}