PostHog · Schema

TopPage

A/B TestingAnalyticsFeature FlagsOpen-SourceProduct AnalyticsSession Recording

Properties

Name Type Description
host string Host for the page, if recorded.
path string URL path.
visitors integer Unique visitors in the period.
change object Period-over-period change in visitors, null when not meaningful.
View JSON Schema on GitHub

JSON Schema

posthog-toppage-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TopPage",
  "title": "TopPage",
  "type": "object",
  "properties": {
    "host": {
      "type": "string",
      "description": "Host for the page, if recorded."
    },
    "path": {
      "type": "string",
      "description": "URL path."
    },
    "visitors": {
      "type": "integer",
      "description": "Unique visitors in the period."
    },
    "change": {
      "allOf": [
        {
          "$ref": "#/components/schemas/WoWChange"
        }
      ],
      "nullable": true,
      "description": "Period-over-period change in visitors, null when not meaningful."
    }
  },
  "required": [
    "change",
    "host",
    "path",
    "visitors"
  ]
}