PostHog · Schema

MatchedRecordingEvent

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
timestamp string
uuid string
View JSON Schema on GitHub

JSON Schema

posthog-matchedrecordingevent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MatchedRecordingEvent",
  "title": "MatchedRecordingEvent",
  "additionalProperties": false,
  "properties": {
    "timestamp": {
      "title": "Timestamp",
      "type": "string"
    },
    "uuid": {
      "title": "Uuid",
      "type": "string"
    }
  },
  "required": [
    "timestamp",
    "uuid"
  ],
  "type": "object"
}