PostHog · Schema

AppendSegments

Serializer for appending transcript segments (supports batched real-time uploads)

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
segments array
View JSON Schema on GitHub

JSON Schema

posthog-appendsegments-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AppendSegments",
  "title": "AppendSegments",
  "type": "object",
  "description": "Serializer for appending transcript segments (supports batched real-time uploads)",
  "properties": {
    "segments": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/TranscriptSegment"
      },
      "minItems": 1
    }
  },
  "required": [
    "segments"
  ]
}