Looker Studio · Schema

LoadVisualizationRequest

Request to load a community visualization.

AnalyticsBusiness IntelligenceDashboardsData VisualizationGoogleReports

Properties

Name Type Description
manifestUrl string The URL to the visualization's manifest.json file, typically hosted on Google Cloud Storage.
componentId string The unique identifier of the report component to render the visualization in.
View JSON Schema on GitHub

JSON Schema

looker-studio-loadvisualizationrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LoadVisualizationRequest",
  "title": "LoadVisualizationRequest",
  "type": "object",
  "description": "Request to load a community visualization.",
  "properties": {
    "manifestUrl": {
      "type": "string",
      "format": "uri",
      "description": "The URL to the visualization's manifest.json file, typically hosted on Google Cloud Storage."
    },
    "componentId": {
      "type": "string",
      "description": "The unique identifier of the report component to render the visualization in."
    }
  },
  "required": [
    "manifestUrl"
  ]
}