PostHog · Schema

SessionSummariesConfig

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
product_context string Free-form description of the team's product, used to tailor AI-generated single-session replay summaries. Injected into the system prompt of every summary generated for this team via the replay page.
View JSON Schema on GitHub

JSON Schema

posthog-sessionsummariesconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SessionSummariesConfig",
  "title": "SessionSummariesConfig",
  "type": "object",
  "properties": {
    "product_context": {
      "type": "string",
      "description": "Free-form description of the team's product, used to tailor AI-generated single-session replay summaries. Injected into the system prompt of every summary generated for this team via the replay page.",
      "maxLength": 10000
    }
  }
}