Google Analytics · Schema

Report

The data response corresponding to the request.

AnalyticsDataGoogleMetricsReportingWeb AnalyticsMachine LearningAttribution

Properties

Name Type Description
columnHeader object The column headers.
data object Response data.
nextPageToken string Page token to retrieve the next page of results in the list.
View JSON Schema on GitHub

JSON Schema

google-analytics-report-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Report",
  "title": "Report",
  "description": "The data response corresponding to the request.",
  "properties": {
    "columnHeader": {
      "$ref": "#/components/schemas/ColumnHeader",
      "description": "The column headers."
    },
    "data": {
      "$ref": "#/components/schemas/ReportData",
      "description": "Response data."
    },
    "nextPageToken": {
      "description": "Page token to retrieve the next page of results in the list.",
      "type": "string"
    }
  },
  "type": "object"
}