PostHog · Schema
TraceNeighborsQuery
A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
Properties
| Name | Type | Description |
|---|---|---|
| dateRange | object | |
| filterSupportTraces | boolean | |
| filterTestAccounts | boolean | |
| kind | string | |
| modifiers | object | Modifiers used when performing the query |
| properties | array | Properties configurable in the interface |
| response | object | |
| tags | object | |
| timestamp | string | Timestamp of the current trace to find neighbors for |
| traceId | string | ID of the current trace to find neighbors for |
| version | number | version of the node, used for schema migrations |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/TraceNeighborsQuery",
"title": "TraceNeighborsQuery",
"additionalProperties": false,
"properties": {
"dateRange": {
"default": null,
"allOf": [
{
"$ref": "#/components/schemas/DateRange"
}
],
"nullable": true
},
"filterSupportTraces": {
"default": null,
"title": "Filtersupporttraces",
"type": "boolean",
"nullable": true
},
"filterTestAccounts": {
"default": null,
"title": "Filtertestaccounts",
"type": "boolean",
"nullable": true
},
"kind": {
"default": "TraceNeighborsQuery",
"title": "Kind",
"type": "string",
"enum": [
"TraceNeighborsQuery"
]
},
"modifiers": {
"default": null,
"description": "Modifiers used when performing the query",
"allOf": [
{
"$ref": "#/components/schemas/HogQLQueryModifiers"
}
],
"nullable": true
},
"properties": {
"default": null,
"description": "Properties configurable in the interface",
"title": "Properties",
"items": {
"anyOf": [
{
"$ref": "#/components/schemas/EventPropertyFilter"
},
{
"$ref": "#/components/schemas/PersonPropertyFilter"
},
{
"$ref": "#/components/schemas/ElementPropertyFilter"
},
{
"$ref": "#/components/schemas/EventMetadataPropertyFilter"
},
{
"$ref": "#/components/schemas/SessionPropertyFilter"
},
{
"$ref": "#/components/schemas/CohortPropertyFilter"
},
{
"$ref": "#/components/schemas/RecordingPropertyFilter"
},
{
"$ref": "#/components/schemas/LogEntryPropertyFilter"
},
{
"$ref": "#/components/schemas/GroupPropertyFilter"
},
{
"$ref": "#/components/schemas/FeaturePropertyFilter"
},
{
"$ref": "#/components/schemas/FlagPropertyFilter"
},
{
"$ref": "#/components/schemas/HogQLPropertyFilter"
},
{
"$ref": "#/components/schemas/EmptyPropertyFilter"
},
{
"$ref": "#/components/schemas/DataWarehousePropertyFilter"
},
{
"$ref": "#/components/schemas/DataWarehousePersonPropertyFilter"
},
{
"$ref": "#/components/schemas/ErrorTrackingIssueFilter"
},
{
"$ref": "#/components/schemas/LogPropertyFilter"
},
{
"$ref": "#/components/schemas/SpanPropertyFilter"
},
{
"$ref": "#/components/schemas/RevenueAnalyticsPropertyFilter"
},
{
"$ref": "#/components/schemas/WorkflowVariablePropertyFilter"
}
]
},
"type": "array",
"nullable": true
},
"response": {
"default": null,
"allOf": [
{
"$ref": "#/components/schemas/TraceNeighborsQueryResponse"
}
],
"nullable": true
},
"tags": {
"default": null,
"allOf": [
{
"$ref": "#/components/schemas/QueryLogTags"
}
],
"nullable": true
},
"timestamp": {
"description": "Timestamp of the current trace to find neighbors for",
"title": "Timestamp",
"type": "string"
},
"traceId": {
"description": "ID of the current trace to find neighbors for",
"title": "Traceid",
"type": "string"
},
"version": {
"default": null,
"description": "version of the node, used for schema migrations",
"title": "Version",
"type": "number",
"nullable": true
}
},
"required": [
"timestamp",
"traceId"
],
"type": "object"
}