PostHog · Schema

PaginatedErrorTrackingStackFrameList

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
count integer
next string
previous string
results array
View JSON Schema on GitHub

JSON Schema

posthog-paginatederrortrackingstackframelist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PaginatedErrorTrackingStackFrameList",
  "title": "PaginatedErrorTrackingStackFrameList",
  "type": "object",
  "required": [
    "count",
    "results"
  ],
  "properties": {
    "count": {
      "type": "integer",
      "example": 123
    },
    "next": {
      "type": "string",
      "nullable": true,
      "format": "uri",
      "example": "http://api.example.org/accounts/?offset=400&limit=100"
    },
    "previous": {
      "type": "string",
      "nullable": true,
      "format": "uri",
      "example": "http://api.example.org/accounts/?offset=200&limit=100"
    },
    "results": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ErrorTrackingStackFrame"
      }
    }
  }
}