{ "$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" ] }