Google Analytics · Schema

ReportRow

A row in the report.

AnalyticsDataGoogleMetricsReportingWeb AnalyticsMachine-LearningAttribution

Properties

Name Type Description
dimensions array List of requested dimensions.
metrics array List of metrics for each requested DateRange.
View JSON Schema on GitHub

JSON Schema

google-analytics-reportrow-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ReportRow",
  "title": "ReportRow",
  "description": "A row in the report.",
  "properties": {
    "dimensions": {
      "description": "List of requested dimensions.",
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "metrics": {
      "description": "List of metrics for each requested DateRange.",
      "items": {
        "$ref": "#/components/schemas/DateRangeValues"
      },
      "type": "array"
    }
  },
  "type": "object"
}