PostHog · Schema

FunnelPathsFilter

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
funnelPathType object
funnelSource object
funnelStep integer
View JSON Schema on GitHub

JSON Schema

posthog-funnelpathsfilter-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FunnelPathsFilter",
  "title": "FunnelPathsFilter",
  "additionalProperties": false,
  "properties": {
    "funnelPathType": {
      "default": null,
      "allOf": [
        {
          "$ref": "#/components/schemas/FunnelPathType"
        }
      ],
      "nullable": true
    },
    "funnelSource": {
      "$ref": "#/components/schemas/FunnelsQuery"
    },
    "funnelStep": {
      "default": null,
      "title": "Funnelstep",
      "type": "integer",
      "nullable": true
    }
  },
  "required": [
    "funnelSource"
  ],
  "type": "object"
}