PostHog · Schema

TextReprMetadata

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
event_type string
event_id string
trace_id string
rendering string
char_count integer
truncated boolean
error string
View JSON Schema on GitHub

JSON Schema

posthog-textreprmetadata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TextReprMetadata",
  "title": "TextReprMetadata",
  "type": "object",
  "properties": {
    "event_type": {
      "type": "string"
    },
    "event_id": {
      "type": "string"
    },
    "trace_id": {
      "type": "string"
    },
    "rendering": {
      "type": "string"
    },
    "char_count": {
      "type": "integer"
    },
    "truncated": {
      "type": "boolean"
    },
    "error": {
      "type": "string"
    }
  },
  "required": [
    "char_count",
    "rendering",
    "truncated"
  ]
}