PostHog · Schema

BreakpointHitsResponse

Response schema for breakpoint hits endpoint

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
results array List of breakpoint hit events
count integer Number of results returned
has_more boolean Whether there are more results available
View JSON Schema on GitHub

JSON Schema

posthog-breakpointhitsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BreakpointHitsResponse",
  "title": "BreakpointHitsResponse",
  "type": "object",
  "description": "Response schema for breakpoint hits endpoint",
  "properties": {
    "results": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/BreakpointHit"
      },
      "description": "List of breakpoint hit events"
    },
    "count": {
      "type": "integer",
      "description": "Number of results returned"
    },
    "has_more": {
      "type": "boolean",
      "description": "Whether there are more results available"
    }
  },
  "required": [
    "count",
    "has_more",
    "results"
  ]
}