Google Analytics · Schema

DimensionHeader

Describes a dimension column in the report. Dimensions requested in a report produce column entries within rows and DimensionHeaders. However, dimensions used exclusively within filters or expressions do not produce columns in a report; correspondingly, those dimensions do not produce headers.

AnalyticsDataGoogleMetricsReportingWeb AnalyticsMachine LearningAttribution

Properties

Name Type Description
name string The dimension's name.
View JSON Schema on GitHub

JSON Schema

google-analytics-dimensionheader-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DimensionHeader",
  "title": "DimensionHeader",
  "description": "Describes a dimension column in the report. Dimensions requested in a report produce column entries within rows and DimensionHeaders. However, dimensions used exclusively within filters or expressions do not produce columns in a report; correspondingly, those dimensions do not produce headers.",
  "properties": {
    "name": {
      "description": "The dimension's name.",
      "type": "string",
      "example": "Example Name"
    }
  },
  "type": "object"
}