Helicone · Schema
InAppThread
AI GatewaysAI MonitoringGatewaysLLM ObservabilityLLM RoutingPrompt Management
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| chat | object | |
| user_id | string | |
| org_id | string | |
| created_at | string | |
| escalated | boolean | |
| metadata | object | |
| updated_at | string | |
| soft_delete | boolean |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/InAppThread",
"title": "InAppThread",
"properties": {
"id": {
"type": "string"
},
"chat": {},
"user_id": {
"type": "string"
},
"org_id": {
"type": "string"
},
"created_at": {
"type": "string",
"format": "date-time"
},
"escalated": {
"type": "boolean"
},
"metadata": {},
"updated_at": {
"type": "string",
"format": "date-time"
},
"soft_delete": {
"type": "boolean"
}
},
"required": [
"id",
"chat",
"user_id",
"org_id",
"created_at",
"escalated",
"metadata",
"updated_at",
"soft_delete"
],
"type": "object",
"additionalProperties": false
}