PostHog · Schema

PatchedSessionSummariesConfig

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-patchedsessionsummariesconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PatchedSessionSummariesConfig",
  "title": "PatchedSessionSummariesConfig",
  "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
    }
  }
}