PostHog · Schema

LiveDebuggerBreakpoint

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
View JSON Schema on GitHub

JSON Schema

posthog-livedebuggerbreakpoint-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LiveDebuggerBreakpoint",
  "title": "LiveDebuggerBreakpoint",
  "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
    }
  },
  "required": [
    "created_at",
    "filename",
    "id",
    "line_number",
    "updated_at"
  ]
}