{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Comment", "title": "Comment", "type": "object", "properties": { "id": { "type": "string" }, "body": { "$ref": "#/components/schemas/MessageBody" }, "createdDate": { "type": "string", "format": "date-time" }, "user": { "$ref": "#/components/schemas/UserSummary" } } }