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