PostHog · Schema

PinnedSceneTabs

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
tabs array Ordered list of pinned navigation tabs shown in the sidebar for the authenticated user within the current team. Send the full list to replace the existing pins; omit to leave them unchanged.
homepage object Tab descriptor for the user's chosen home page — the destination opened when they click the PostHog logo or hit `/`. Set to a tab descriptor to pick a homepage, send `null` or `{}` to clear it and fal
View JSON Schema on GitHub

JSON Schema

posthog-pinnedscenetabs-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PinnedSceneTabs",
  "title": "PinnedSceneTabs",
  "type": "object",
  "properties": {
    "tabs": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PinnedSceneTab"
      },
      "description": "Ordered list of pinned navigation tabs shown in the sidebar for the authenticated user within the current team. Send the full list to replace the existing pins; omit to leave them unchanged."
    },
    "homepage": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PinnedSceneTab"
        }
      ],
      "nullable": true,
      "description": "Tab descriptor for the user's chosen home page \u2014 the destination opened when they click the PostHog logo or hit `/`. Set to a tab descriptor to pick a homepage, send `null` or `{}` to clear it and fall back to the project default."
    }
  }
}