PostHog · Schema

MatchedRecording

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
events array
session_id string
View JSON Schema on GitHub

JSON Schema

posthog-matchedrecording-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MatchedRecording",
  "title": "MatchedRecording",
  "additionalProperties": false,
  "properties": {
    "events": {
      "items": {
        "$ref": "#/components/schemas/MatchedRecordingEvent"
      },
      "title": "Events",
      "type": "array"
    },
    "session_id": {
      "default": null,
      "title": "Session Id",
      "type": "string",
      "nullable": true
    }
  },
  "required": [
    "events"
  ],
  "type": "object"
}