PostHog · Schema

WebVitalsPathBreakdownResultItem

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
path string
value number
View JSON Schema on GitHub

JSON Schema

posthog-webvitalspathbreakdownresultitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WebVitalsPathBreakdownResultItem",
  "title": "WebVitalsPathBreakdownResultItem",
  "additionalProperties": false,
  "properties": {
    "path": {
      "title": "Path",
      "type": "string"
    },
    "value": {
      "title": "Value",
      "type": "number"
    }
  },
  "required": [
    "path",
    "value"
  ],
  "type": "object"
}