PostHog · Schema

TrendsAlertConfig

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
check_ongoing_interval boolean When true, evaluate the current (still incomplete) time interval in addition to completed ones.
series_index integer Zero-based index of the series in the insight's query to monitor.
type string
View JSON Schema on GitHub

JSON Schema

posthog-trendsalertconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TrendsAlertConfig",
  "title": "TrendsAlertConfig",
  "additionalProperties": false,
  "properties": {
    "check_ongoing_interval": {
      "default": null,
      "description": "When true, evaluate the current (still incomplete) time interval in addition to completed ones.",
      "title": "Check Ongoing Interval",
      "type": "boolean",
      "nullable": true
    },
    "series_index": {
      "description": "Zero-based index of the series in the insight's query to monitor.",
      "title": "Series Index",
      "type": "integer"
    },
    "type": {
      "default": "TrendsAlertConfig",
      "title": "Type",
      "type": "string",
      "enum": [
        "TrendsAlertConfig"
      ]
    }
  },
  "required": [
    "series_index"
  ],
  "type": "object"
}