{ "$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" }