Google Analytics · Schema

DateRangeValues

Used to return a list of metrics for a single DateRange / dimension combination

AnalyticsDataGoogleMetricsReportingWeb AnalyticsMachine LearningAttribution

Properties

Name Type Description
pivotValueRegions array The values of each pivot region.
values array Each value corresponds to each Metric in the request.
View JSON Schema on GitHub

JSON Schema

google-analytics-daterangevalues-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DateRangeValues",
  "title": "DateRangeValues",
  "description": "Used to return a list of metrics for a single DateRange / dimension combination",
  "properties": {
    "pivotValueRegions": {
      "description": "The values of each pivot region.",
      "items": {
        "$ref": "#/components/schemas/PivotValueRegion"
      },
      "type": "array"
    },
    "values": {
      "description": "Each value corresponds to each Metric in the request.",
      "items": {
        "type": "string"
      },
      "type": "array"
    }
  },
  "type": "object"
}