PostHog · Schema

LifecycleFilter

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
showLegend boolean
showValuesOnSeries boolean
stacked boolean
toggledLifecycles array
View JSON Schema on GitHub

JSON Schema

posthog-lifecyclefilter-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LifecycleFilter",
  "title": "LifecycleFilter",
  "additionalProperties": false,
  "properties": {
    "showLegend": {
      "default": false,
      "title": "Showlegend",
      "type": "boolean",
      "nullable": true
    },
    "showValuesOnSeries": {
      "default": null,
      "title": "Showvaluesonseries",
      "type": "boolean",
      "nullable": true
    },
    "stacked": {
      "default": true,
      "title": "Stacked",
      "type": "boolean",
      "nullable": true
    },
    "toggledLifecycles": {
      "default": null,
      "title": "Toggledlifecycles",
      "items": {
        "$ref": "#/components/schemas/LifecycleToggle"
      },
      "type": "array",
      "nullable": true
    }
  },
  "type": "object"
}