Google Analytics · Schema

MetricHeaderEntry

Header for the metrics.

AnalyticsDataGoogleMetricsReportingWeb AnalyticsMachine LearningAttribution

Properties

Name Type Description
name string The name of the header.
type string The type of the metric, for example `INTEGER`.
View JSON Schema on GitHub

JSON Schema

google-analytics-metricheaderentry-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MetricHeaderEntry",
  "title": "MetricHeaderEntry",
  "description": "Header for the metrics.",
  "properties": {
    "name": {
      "description": "The name of the header.",
      "type": "string",
      "example": "Example Name"
    },
    "type": {
      "description": "The type of the metric, for example `INTEGER`.",
      "enum": [
        "METRIC_TYPE_UNSPECIFIED",
        "INTEGER",
        "FLOAT",
        "CURRENCY",
        "PERCENT",
        "TIME"
      ],
      "type": "string",
      "example": "METRIC_TYPE_UNSPECIFIED"
    }
  },
  "type": "object"
}