PostHog · Schema
PatchedTraceReviewUpdate
A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
Properties
| Name | Type | Description |
|---|---|---|
| trace_id | string | Trace ID for the review. Only one active review can exist per trace and team. |
| comment | string | Optional comment or reasoning for the review. |
| scores | array | Full desired score set for this review. Omit scorers you want to leave blank. |
| queue_id | string | Optional review queue ID for queue-context saves. When provided, the matching pending queue item is cleared after the review is saved. If omitted, any pending queue item for the same trace is cleared. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PatchedTraceReviewUpdate",
"title": "PatchedTraceReviewUpdate",
"type": "object",
"properties": {
"trace_id": {
"type": "string",
"description": "Trace ID for the review. Only one active review can exist per trace and team.",
"maxLength": 255
},
"comment": {
"type": "string",
"nullable": true,
"description": "Optional comment or reasoning for the review."
},
"scores": {
"type": "array",
"items": {
"$ref": "#/components/schemas/TraceReviewScoreWrite"
},
"description": "Full desired score set for this review. Omit scorers you want to leave blank."
},
"queue_id": {
"type": "string",
"format": "uuid",
"nullable": true,
"description": "Optional review queue ID for queue-context saves. When provided, the matching pending queue item is cleared after the review is saved. If omitted, any pending queue item for the same trace is cleared."
}
}
}