{ "$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" ] }