PostHog · Schema

ReviewQueueItemCreate

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
queue_id string Review queue ID that should own this pending trace.
trace_id string Trace ID to add to the selected review queue.
View JSON Schema on GitHub

JSON Schema

posthog-reviewqueueitemcreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ReviewQueueItemCreate",
  "title": "ReviewQueueItemCreate",
  "type": "object",
  "properties": {
    "queue_id": {
      "type": "string",
      "format": "uuid",
      "description": "Review queue ID that should own this pending trace."
    },
    "trace_id": {
      "type": "string",
      "description": "Trace ID to add to the selected review queue.",
      "maxLength": 255
    }
  },
  "required": [
    "queue_id",
    "trace_id"
  ]
}