{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Comment", "title": "Comment", "type": "object", "description": "A comment on a feed element", "properties": { "id": { "type": "string" }, "body": { "$ref": "#/components/schemas/MessageBody" }, "createdDate": { "type": "string", "format": "date-time" }, "feedElement": { "$ref": "#/components/schemas/ActorReference" }, "likes": { "$ref": "#/components/schemas/LikePage" }, "user": { "$ref": "#/components/schemas/ActorReference" }, "url": { "type": "string", "format": "uri" } } }