Google Analytics · Schema

PageviewData

Represents details collected when the visitor views a page.

AnalyticsDataGoogleMetricsReportingWeb AnalyticsMachine LearningAttribution

Properties

Name Type Description
pagePath string The URL of the page that the visitor viewed.
pageTitle string The title of the page that the visitor viewed.
View JSON Schema on GitHub

JSON Schema

google-analytics-pageviewdata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PageviewData",
  "title": "PageviewData",
  "description": "Represents details collected when the visitor views a page.",
  "properties": {
    "pagePath": {
      "description": "The URL of the page that the visitor viewed.",
      "type": "string",
      "example": "/example/path"
    },
    "pageTitle": {
      "description": "The title of the page that the visitor viewed.",
      "type": "string",
      "example": "example_value"
    }
  },
  "type": "object"
}