{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Comment", "title": "Comment", "type": "object", "properties": { "id": { "type": "string" }, "authorId": { "type": "string" }, "text": { "type": "string" }, "updatedDate": { "type": "string", "format": "date-time" }, "createdDate": { "type": "string", "format": "date-time" }, "taskId": { "type": "string" }, "folderId": { "type": "string" } } }