PostHog · Schema
ReviewQueue
A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| name | string | Human-readable queue name. |
| pending_item_count | integer | Number of pending traces currently assigned to this queue. |
| created_at | string | |
| updated_at | string | |
| created_by | object | User who created this review queue. |
| team | integer |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ReviewQueue",
"title": "ReviewQueue",
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid",
"readOnly": true
},
"name": {
"type": "string",
"readOnly": true,
"description": "Human-readable queue name."
},
"pending_item_count": {
"type": "integer",
"readOnly": true,
"description": "Number of pending traces currently assigned to this queue."
},
"created_at": {
"type": "string",
"format": "date-time",
"readOnly": true
},
"updated_at": {
"type": "string",
"format": "date-time",
"readOnly": true,
"nullable": true
},
"created_by": {
"allOf": [
{
"$ref": "#/components/schemas/UserBasic"
}
],
"readOnly": true,
"description": "User who created this review queue."
},
"team": {
"type": "integer",
"readOnly": true
}
},
"required": [
"created_at",
"created_by",
"id",
"name",
"pending_item_count",
"team",
"updated_at"
]
}