PostHog · Schema

PauseUntilRequest

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
timestamp string Pause the grouping pipeline until this timestamp (ISO 8601).
View JSON Schema on GitHub

JSON Schema

posthog-pauseuntilrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PauseUntilRequest",
  "title": "PauseUntilRequest",
  "type": "object",
  "properties": {
    "timestamp": {
      "type": "string",
      "format": "date-time",
      "description": "Pause the grouping pipeline until this timestamp (ISO 8601)."
    }
  },
  "required": [
    "timestamp"
  ]
}