PostHog · Schema

MessageMinimal

Serializer for appending a message to an existing conversation without triggering AI processing.

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
content string
View JSON Schema on GitHub

JSON Schema

posthog-messageminimal-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MessageMinimal",
  "title": "MessageMinimal",
  "type": "object",
  "description": "Serializer for appending a message to an existing conversation without triggering AI processing.",
  "properties": {
    "content": {
      "type": "string",
      "maxLength": 10000
    }
  },
  "required": [
    "content"
  ]
}