PostHog · Schema

InsightsThresholdBounds

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
lower number Alert fires when the value drops below this number.
upper number Alert fires when the value exceeds this number.
View JSON Schema on GitHub

JSON Schema

posthog-insightsthresholdbounds-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InsightsThresholdBounds",
  "title": "InsightsThresholdBounds",
  "additionalProperties": false,
  "properties": {
    "lower": {
      "default": null,
      "description": "Alert fires when the value drops below this number.",
      "title": "Lower",
      "type": "number",
      "nullable": true
    },
    "upper": {
      "default": null,
      "description": "Alert fires when the value exceeds this number.",
      "title": "Upper",
      "type": "number",
      "nullable": true
    }
  },
  "type": "object"
}