PostHog · Schema
QueryResponseAlternative85
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 |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/QueryResponseAlternative85",
"title": "QueryResponseAlternative85",
"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"
}