PostHog · Schema

PauseStateResponse

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
paused_until string The timestamp the pipeline is paused until, or null if not paused/not running.
View JSON Schema on GitHub

JSON Schema

posthog-pausestateresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PauseStateResponse",
  "title": "PauseStateResponse",
  "type": "object",
  "properties": {
    "paused_until": {
      "type": "string",
      "format": "date-time",
      "nullable": true,
      "description": "The timestamp the pipeline is paused until, or null if not paused/not running."
    }
  },
  "required": [
    "paused_until"
  ]
}