{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ExperimentTrendsQuery", "title": "ExperimentTrendsQuery", "additionalProperties": false, "properties": { "count_query": { "$ref": "#/components/schemas/TrendsQuery" }, "experiment_id": { "default": null, "title": "Experiment Id", "type": "integer", "nullable": true }, "exposure_query": { "default": null, "allOf": [ { "$ref": "#/components/schemas/TrendsQuery" } ], "nullable": true }, "fingerprint": { "default": null, "title": "Fingerprint", "type": "string", "nullable": true }, "kind": { "default": "ExperimentTrendsQuery", "title": "Kind", "type": "string", "enum": [ "ExperimentTrendsQuery" ] }, "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/ExperimentTrendsQueryResponse" } ], "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": [ "count_query" ], "type": "object" }