PostHog · Schema

BaselineTotals

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
by_run_type object
all_snapshots integer
recently_tolerated integer
frequently_tolerated integer
currently_quarantined integer
View JSON Schema on GitHub

JSON Schema

posthog-baselinetotals-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BaselineTotals",
  "title": "BaselineTotals",
  "type": "object",
  "properties": {
    "by_run_type": {
      "type": "object",
      "additionalProperties": {
        "type": "integer"
      }
    },
    "all_snapshots": {
      "type": "integer"
    },
    "recently_tolerated": {
      "type": "integer"
    },
    "frequently_tolerated": {
      "type": "integer"
    },
    "currently_quarantined": {
      "type": "integer"
    }
  },
  "required": [
    "all_snapshots",
    "by_run_type",
    "currently_quarantined",
    "frequently_tolerated",
    "recently_tolerated"
  ]
}