PostHog · Schema

TraceNeighborsQueryResponse

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
newerTimestamp string Timestamp of the newer trace
newerTraceId string ID of the newer trace (chronologically after current)
olderTimestamp string Timestamp of the older trace
olderTraceId string ID of the older trace (chronologically before current)
timings array Measured timings for different parts of the query generation process
View JSON Schema on GitHub

JSON Schema

posthog-traceneighborsqueryresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TraceNeighborsQueryResponse",
  "title": "TraceNeighborsQueryResponse",
  "additionalProperties": false,
  "properties": {
    "newerTimestamp": {
      "default": null,
      "description": "Timestamp of the newer trace",
      "title": "Newertimestamp",
      "type": "string",
      "nullable": true
    },
    "newerTraceId": {
      "default": null,
      "description": "ID of the newer trace (chronologically after current)",
      "title": "Newertraceid",
      "type": "string",
      "nullable": true
    },
    "olderTimestamp": {
      "default": null,
      "description": "Timestamp of the older trace",
      "title": "Oldertimestamp",
      "type": "string",
      "nullable": true
    },
    "olderTraceId": {
      "default": null,
      "description": "ID of the older trace (chronologically before current)",
      "title": "Oldertraceid",
      "type": "string",
      "nullable": true
    },
    "timings": {
      "default": null,
      "description": "Measured timings for different parts of the query generation process",
      "title": "Timings",
      "items": {
        "$ref": "#/components/schemas/QueryTiming"
      },
      "type": "array",
      "nullable": true
    }
  },
  "type": "object"
}