PostHog · Schema

ConclusionEnum

* `won` - won * `lost` - lost * `inconclusive` - inconclusive * `stopped_early` - stopped_early * `invalid` - invalid

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
View JSON Schema on GitHub

JSON Schema

posthog-conclusionenum-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConclusionEnum",
  "title": "ConclusionEnum",
  "enum": [
    "won",
    "lost",
    "inconclusive",
    "stopped_early",
    "invalid"
  ],
  "type": "string",
  "description": "* `won` - won\n* `lost` - lost\n* `inconclusive` - inconclusive\n* `stopped_early` - stopped_early\n* `invalid` - invalid"
}