PostHog · Schema

ActiveBreakpointsResponse

Response schema for active breakpoints endpoint

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
breakpoints array List of active breakpoints
View JSON Schema on GitHub

JSON Schema

posthog-activebreakpointsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ActiveBreakpointsResponse",
  "title": "ActiveBreakpointsResponse",
  "type": "object",
  "description": "Response schema for active breakpoints endpoint",
  "properties": {
    "breakpoints": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ActiveBreakpoint"
      },
      "description": "List of active breakpoints"
    }
  },
  "required": [
    "breakpoints"
  ]
}