{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ExperimentFunnelsQuery", "title": "ExperimentFunnelsQuery", "additionalProperties": false, "properties": { "experiment_id": { "default": null, "title": "Experiment Id", "type": "integer", "nullable": true }, "fingerprint": { "default": null, "title": "Fingerprint", "type": "string", "nullable": true }, "funnels_query": { "$ref": "#/components/schemas/FunnelsQuery" }, "kind": { "default": "ExperimentFunnelsQuery", "title": "Kind", "type": "string", "enum": [ "ExperimentFunnelsQuery" ] }, "modifiers": { "default": null, "description": "Modifiers used when performing the query", "allOf": [ { "$ref": "#/components/schemas/HogQLQueryModifiers" } ], "nullable": true }, "name": { "default": null, "title": "Name", "type": "string", "nullable": true }, "response": { "default": null, "allOf": [ { "$ref": "#/components/schemas/ExperimentFunnelsQueryResponse" } ], "nullable": true }, "tags": { "default": null, "allOf": [ { "$ref": "#/components/schemas/QueryLogTags" } ], "nullable": true }, "uuid": { "default": null, "title": "Uuid", "type": "string", "nullable": true }, "version": { "default": null, "description": "version of the node, used for schema migrations", "title": "Version", "type": "number", "nullable": true } }, "required": [ "funnels_query" ], "type": "object" }