Google Analytics · Schema

BatchRunReportsResponse

The batch response containing multiple reports.

AnalyticsDataGoogleMetricsReportingWeb AnalyticsMachine LearningAttribution

Properties

Name Type Description
kind string Identifies what kind of resource this message is. This `kind` is always the fixed string "analyticsData#batchRunReports". Useful to distinguish between response types in JSON.
reports array Individual responses. Each response has a separate report request.
View JSON Schema on GitHub

JSON Schema

google-analytics-batchrunreportsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BatchRunReportsResponse",
  "title": "BatchRunReportsResponse",
  "description": "The batch response containing multiple reports.",
  "properties": {
    "kind": {
      "description": "Identifies what kind of resource this message is. This `kind` is always the fixed string \"analyticsData#batchRunReports\". Useful to distinguish between response types in JSON.",
      "type": "string",
      "example": "example_value"
    },
    "reports": {
      "description": "Individual responses. Each response has a separate report request.",
      "items": {
        "$ref": "#/components/schemas/RunReportResponse"
      },
      "type": "array"
    }
  },
  "type": "object"
}