PostHog · Schema

EventOddsRatioSerialized

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
correlation_type object
event object
failure_count integer
odds_ratio number
success_count integer
View JSON Schema on GitHub

JSON Schema

posthog-eventoddsratioserialized-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EventOddsRatioSerialized",
  "title": "EventOddsRatioSerialized",
  "additionalProperties": false,
  "properties": {
    "correlation_type": {
      "$ref": "#/components/schemas/CorrelationType"
    },
    "event": {
      "$ref": "#/components/schemas/EventDefinition"
    },
    "failure_count": {
      "title": "Failure Count",
      "type": "integer"
    },
    "odds_ratio": {
      "title": "Odds Ratio",
      "type": "number"
    },
    "success_count": {
      "title": "Success Count",
      "type": "integer"
    }
  },
  "required": [
    "correlation_type",
    "event",
    "failure_count",
    "odds_ratio",
    "success_count"
  ],
  "type": "object"
}