PostHog · Schema
PatchedLiveDebuggerBreakpoint
A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| repository | string | |
| filename | string | |
| line_number | integer | |
| enabled | boolean | |
| condition | string | |
| created_at | string | |
| updated_at | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PatchedLiveDebuggerBreakpoint",
"title": "PatchedLiveDebuggerBreakpoint",
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid",
"readOnly": true
},
"repository": {
"type": "string",
"nullable": true
},
"filename": {
"type": "string"
},
"line_number": {
"type": "integer",
"maximum": 2147483647,
"minimum": 0
},
"enabled": {
"type": "boolean"
},
"condition": {
"type": "string",
"nullable": true
},
"created_at": {
"type": "string",
"format": "date-time",
"readOnly": true
},
"updated_at": {
"type": "string",
"format": "date-time",
"readOnly": true
}
}
}