PostHog · Schema

WebVitalsPathBreakdownResult

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
good array
needs_improvements array
poor array
View JSON Schema on GitHub

JSON Schema

posthog-webvitalspathbreakdownresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WebVitalsPathBreakdownResult",
  "title": "WebVitalsPathBreakdownResult",
  "additionalProperties": false,
  "properties": {
    "good": {
      "items": {
        "$ref": "#/components/schemas/WebVitalsPathBreakdownResultItem"
      },
      "title": "Good",
      "type": "array"
    },
    "needs_improvements": {
      "items": {
        "$ref": "#/components/schemas/WebVitalsPathBreakdownResultItem"
      },
      "title": "Needs Improvements",
      "type": "array"
    },
    "poor": {
      "items": {
        "$ref": "#/components/schemas/WebVitalsPathBreakdownResultItem"
      },
      "title": "Poor",
      "type": "array"
    }
  },
  "required": [
    "good",
    "needs_improvements",
    "poor"
  ],
  "type": "object"
}