PostHog · Schema

TextReprResponse

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
text string Generated text representation of the event
metadata object Metadata about the text representation
View JSON Schema on GitHub

JSON Schema

posthog-textreprresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TextReprResponse",
  "title": "TextReprResponse",
  "type": "object",
  "properties": {
    "text": {
      "type": "string",
      "description": "Generated text representation of the event"
    },
    "metadata": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TextReprMetadata"
        }
      ],
      "description": "Metadata about the text representation"
    }
  },
  "required": [
    "metadata",
    "text"
  ]
}