Properties
| Name | Type | Description |
|---|---|---|
| call_id | string | |
| content | string | |
| created_at | string | |
| id | string | |
| raw | object | |
| updated_at | string | |
| user_id | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/UcComment",
"title": "UcComment",
"properties": {
"call_id": {
"type": "string"
},
"content": {
"type": "string"
},
"created_at": {
"type": "string"
},
"id": {
"type": "string"
},
"raw": {
"additionalProperties": true,
"type": "object"
},
"updated_at": {
"type": "string"
},
"user_id": {
"type": "string"
}
},
"required": [
"content"
],
"type": "object"
}