Google Analytics · Schema

GoogleAnalyticsAdminV1betaAccessRow

Access report data for each row.

AnalyticsDataGoogleMetricsReportingWeb AnalyticsMachine LearningAttribution

Properties

Name Type Description
dimensionValues array List of dimension values. These values are in the same order as specified in the request.
metricValues array List of metric values. These values are in the same order as specified in the request.
View JSON Schema on GitHub

JSON Schema

google-analytics-googleanalyticsadminv1betaaccessrow-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GoogleAnalyticsAdminV1betaAccessRow",
  "title": "GoogleAnalyticsAdminV1betaAccessRow",
  "description": "Access report data for each row.",
  "properties": {
    "dimensionValues": {
      "description": "List of dimension values. These values are in the same order as specified in the request.",
      "items": {
        "$ref": "#/components/schemas/GoogleAnalyticsAdminV1betaAccessDimensionValue"
      },
      "type": "array"
    },
    "metricValues": {
      "description": "List of metric values. These values are in the same order as specified in the request.",
      "items": {
        "$ref": "#/components/schemas/GoogleAnalyticsAdminV1betaAccessMetricValue"
      },
      "type": "array"
    }
  },
  "type": "object"
}