PostHog · Schema
ErrorTrackingSimilarIssuesQuery
A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
Properties
| Name | Type | Description |
|---|---|---|
| dateRange | object | |
| issueId | string | |
| kind | string | |
| limit | integer | |
| maxDistance | number | |
| modelName | object | |
| modifiers | object | Modifiers used when performing the query |
| offset | integer | |
| rendering | string | |
| response | object | |
| tags | object | |
| version | number | version of the node, used for schema migrations |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ErrorTrackingSimilarIssuesQuery",
"title": "ErrorTrackingSimilarIssuesQuery",
"additionalProperties": false,
"properties": {
"dateRange": {
"default": null,
"allOf": [
{
"$ref": "#/components/schemas/DateRange"
}
],
"nullable": true
},
"issueId": {
"title": "Issueid",
"type": "string"
},
"kind": {
"default": "ErrorTrackingSimilarIssuesQuery",
"title": "Kind",
"type": "string",
"enum": [
"ErrorTrackingSimilarIssuesQuery"
]
},
"limit": {
"default": null,
"title": "Limit",
"type": "integer",
"nullable": true
},
"maxDistance": {
"default": null,
"title": "Maxdistance",
"type": "number",
"nullable": true
},
"modelName": {
"default": null,
"allOf": [
{
"$ref": "#/components/schemas/EmbeddingModelName"
}
],
"nullable": true
},
"modifiers": {
"default": null,
"description": "Modifiers used when performing the query",
"allOf": [
{
"$ref": "#/components/schemas/HogQLQueryModifiers"
}
],
"nullable": true
},
"offset": {
"default": null,
"title": "Offset",
"type": "integer",
"nullable": true
},
"rendering": {
"default": null,
"title": "Rendering",
"type": "string",
"nullable": true
},
"response": {
"default": null,
"allOf": [
{
"$ref": "#/components/schemas/ErrorTrackingSimilarIssuesQueryResponse"
}
],
"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": [
"issueId"
],
"type": "object"
}