PostHog · Schema
ExperimentFunnelsQuery
A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
Properties
| Name | Type | Description |
|---|---|---|
| experiment_id | integer | |
| fingerprint | string | |
| funnels_query | object | |
| kind | string | |
| modifiers | object | Modifiers used when performing the query |
| name | string | |
| response | object | |
| tags | object | |
| uuid | string | |
| version | number | version of the node, used for schema migrations |
JSON Schema
{
"$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"
}