PostHog · Schema

RunInsightsResponse

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
results array Results for each insight tile on the dashboard.
View JSON Schema on GitHub

JSON Schema

posthog-runinsightsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RunInsightsResponse",
  "title": "RunInsightsResponse",
  "type": "object",
  "properties": {
    "results": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/DashboardTileResult"
      },
      "description": "Results for each insight tile on the dashboard."
    }
  },
  "required": [
    "results"
  ]
}