PostHog · Schema

Settings

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
display object
formatting object
View JSON Schema on GitHub

JSON Schema

posthog-settings-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Settings",
  "title": "Settings",
  "additionalProperties": false,
  "properties": {
    "display": {
      "default": null,
      "allOf": [
        {
          "$ref": "#/components/schemas/ChartSettingsDisplay"
        }
      ],
      "nullable": true
    },
    "formatting": {
      "default": null,
      "allOf": [
        {
          "$ref": "#/components/schemas/ChartSettingsFormatting"
        }
      ],
      "nullable": true
    }
  },
  "type": "object"
}