PostHog · Schema

ScenePersonalisationBasic

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
scene string
dashboard integer
View JSON Schema on GitHub

JSON Schema

posthog-scenepersonalisationbasic-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ScenePersonalisationBasic",
  "title": "ScenePersonalisationBasic",
  "type": "object",
  "properties": {
    "scene": {
      "type": "string",
      "maxLength": 200
    },
    "dashboard": {
      "type": "integer",
      "nullable": true
    }
  },
  "required": [
    "scene"
  ]
}