{ "$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" }