PostHog · Schema

DetectorConfig

Detector configuration types

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

JSON Schema

posthog-detectorconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DetectorConfig",
  "title": "DetectorConfig",
  "anyOf": [
    {
      "$ref": "#/components/schemas/EnsembleDetectorConfig"
    },
    {
      "$ref": "#/components/schemas/ZScoreDetectorConfig"
    },
    {
      "$ref": "#/components/schemas/MADDetectorConfig"
    },
    {
      "$ref": "#/components/schemas/IQRDetectorConfig"
    },
    {
      "$ref": "#/components/schemas/ThresholdDetectorConfig"
    },
    {
      "$ref": "#/components/schemas/ECODDetectorConfig"
    },
    {
      "$ref": "#/components/schemas/COPODDetectorConfig"
    },
    {
      "$ref": "#/components/schemas/IsolationForestDetectorConfig"
    },
    {
      "$ref": "#/components/schemas/KNNDetectorConfig"
    },
    {
      "$ref": "#/components/schemas/HBOSDetectorConfig"
    },
    {
      "$ref": "#/components/schemas/LOFDetectorConfig"
    },
    {
      "$ref": "#/components/schemas/OCSVMDetectorConfig"
    },
    {
      "$ref": "#/components/schemas/PCADetectorConfig"
    }
  ],
  "description": "Detector configuration types"
}