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