{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ActiveBreakpoint", "title": "ActiveBreakpoint", "type": "object", "description": "Schema for a single active breakpoint", "properties": { "id": { "type": "string", "format": "uuid", "description": "Unique identifier for the breakpoint" }, "repository": { "type": "string", "nullable": true, "description": "Repository identifier (e.g., 'PostHog/posthog')" }, "filename": { "type": "string", "description": "File path where the breakpoint is set" }, "line_number": { "type": "integer", "description": "Line number of the breakpoint" }, "enabled": { "type": "boolean", "description": "Whether the breakpoint is enabled" }, "condition": { "type": "string", "nullable": true, "description": "Optional condition for the breakpoint" } }, "required": [ "enabled", "filename", "id", "line_number" ] }