{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ErrorTrackingIssueCorrelationQuery", "title": "ErrorTrackingIssueCorrelationQuery", "additionalProperties": false, "properties": { "events": { "items": { "type": "string" }, "title": "Events", "type": "array" }, "kind": { "default": "ErrorTrackingIssueCorrelationQuery", "title": "Kind", "type": "string", "enum": [ "ErrorTrackingIssueCorrelationQuery" ] }, "modifiers": { "default": null, "description": "Modifiers used when performing the query", "allOf": [ { "$ref": "#/components/schemas/HogQLQueryModifiers" } ], "nullable": true }, "response": { "default": null, "allOf": [ { "$ref": "#/components/schemas/ErrorTrackingIssueCorrelationQueryResponse" } ], "nullable": true }, "tags": { "default": null, "allOf": [ { "$ref": "#/components/schemas/QueryLogTags" } ], "nullable": true }, "version": { "default": null, "description": "version of the node, used for schema migrations", "title": "Version", "type": "number", "nullable": true } }, "required": [ "events" ], "type": "object" }