PostHog · Schema

AlertScheduleRestrictionWindow

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
start string Start time HH:MM (24-hour, project timezone). Inclusive. Each window must span ≥ 30 minutes on the local daily timeline (half-open [start, end)).
end string End time HH:MM (24-hour). Exclusive (half-open interval). Each window must span ≥ 30 minutes locally.
View JSON Schema on GitHub

JSON Schema

posthog-alertschedulerestrictionwindow-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AlertScheduleRestrictionWindow",
  "title": "AlertScheduleRestrictionWindow",
  "additionalProperties": false,
  "properties": {
    "start": {
      "description": "Start time HH:MM (24-hour, project timezone). Inclusive. Each window must span \u2265 30 minutes on the local daily timeline (half-open [start, end)).",
      "title": "Start",
      "type": "string"
    },
    "end": {
      "description": "End time HH:MM (24-hour). Exclusive (half-open interval). Each window must span \u2265 30 minutes locally.",
      "title": "End",
      "type": "string"
    }
  },
  "required": [
    "start",
    "end"
  ],
  "type": "object"
}