PostHog · Schema
ThresholdDetectorConfig
A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
Properties
| Name | Type | Description |
|---|---|---|
| lower_bound | number | Lower bound - values below this are anomalies |
| preprocessing | object | Preprocessing transforms applied before detection |
| type | string | |
| upper_bound | number | Upper bound - values above this are anomalies |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ThresholdDetectorConfig",
"title": "ThresholdDetectorConfig",
"additionalProperties": false,
"properties": {
"lower_bound": {
"default": null,
"description": "Lower bound - values below this are anomalies",
"title": "Lower Bound",
"type": "number",
"nullable": true
},
"preprocessing": {
"default": null,
"description": "Preprocessing transforms applied before detection",
"allOf": [
{
"$ref": "#/components/schemas/PreprocessingConfig"
}
],
"nullable": true
},
"type": {
"default": "threshold",
"title": "Type",
"type": "string",
"enum": [
"threshold"
]
},
"upper_bound": {
"default": null,
"description": "Upper bound - values above this are anomalies",
"title": "Upper Bound",
"type": "number",
"nullable": true
}
},
"type": "object"
}