PostHog · Schema

DashboardTileResult

DashboardTileSerializer restricted to tile id + insight result fields.

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
id integer
insight object
View JSON Schema on GitHub

JSON Schema

posthog-dashboardtileresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DashboardTileResult",
  "title": "DashboardTileResult",
  "type": "object",
  "description": "DashboardTileSerializer restricted to tile id + insight result fields.",
  "properties": {
    "id": {
      "type": "integer"
    },
    "insight": {
      "$ref": "#/components/schemas/InsightResult"
    }
  },
  "required": [
    "insight"
  ]
}