PostHog · Schema

CachedSummary

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
trace_id string
title string
cached boolean
View JSON Schema on GitHub

JSON Schema

posthog-cachedsummary-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CachedSummary",
  "title": "CachedSummary",
  "type": "object",
  "properties": {
    "trace_id": {
      "type": "string"
    },
    "title": {
      "type": "string"
    },
    "cached": {
      "type": "boolean",
      "default": true
    }
  },
  "required": [
    "title",
    "trace_id"
  ]
}