PostHog · Schema

OutdatedTrafficAlert

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
version string Outdated version handling significant traffic.
threshold_percent number Traffic-percentage threshold that triggered the alert (10% for most SDKs, 20% for web).
View JSON Schema on GitHub

JSON Schema

posthog-outdatedtrafficalert-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OutdatedTrafficAlert",
  "title": "OutdatedTrafficAlert",
  "type": "object",
  "properties": {
    "version": {
      "type": "string",
      "description": "Outdated version handling significant traffic."
    },
    "threshold_percent": {
      "type": "number",
      "format": "double",
      "description": "Traffic-percentage threshold that triggered the alert (10% for most SDKs, 20% for web)."
    }
  },
  "required": [
    "threshold_percent",
    "version"
  ]
}