PostHog · Schema

FunnelCorrelationResult

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
events array
skewed boolean
View JSON Schema on GitHub

JSON Schema

posthog-funnelcorrelationresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FunnelCorrelationResult",
  "title": "FunnelCorrelationResult",
  "additionalProperties": false,
  "properties": {
    "events": {
      "items": {
        "$ref": "#/components/schemas/EventOddsRatioSerialized"
      },
      "title": "Events",
      "type": "array"
    },
    "skewed": {
      "title": "Skewed",
      "type": "boolean"
    }
  },
  "required": [
    "events",
    "skewed"
  ],
  "type": "object"
}