PostHog · Schema
ActiveBreakpoint
Schema for a single active breakpoint
A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier for the breakpoint |
| repository | string | Repository identifier (e.g., 'PostHog/posthog') |
| filename | string | File path where the breakpoint is set |
| line_number | integer | Line number of the breakpoint |
| enabled | boolean | Whether the breakpoint is enabled |
| condition | string | Optional condition for the breakpoint |
JSON Schema
{
"$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"
]
}