PostHog · Schema

PauseResponse

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
status string Always 'paused'.
paused_until string The timestamp the pipeline is paused until.
View JSON Schema on GitHub

JSON Schema

posthog-pauseresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PauseResponse",
  "title": "PauseResponse",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "description": "Always 'paused'."
    },
    "paused_until": {
      "type": "string",
      "format": "date-time",
      "description": "The timestamp the pipeline is paused until."
    }
  },
  "required": [
    "paused_until",
    "status"
  ]
}