{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.workbookComment", "title": "microsoft.graph.workbookComment", "allOf": [ { "$ref": "#/components/schemas/microsoft.graph.entity" }, { "title": "workbookComment", "required": [ "@odata.type" ], "type": "object", "properties": { "content": { "type": "string", "description": "The content of the comment.", "nullable": true }, "contentType": { "type": "string", "description": "The content type of the comment." }, "replies": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.workbookCommentReply" }, "description": "The list of replies to the comment. Read-only. Nullable.", "x-ms-navigationProperty": true }, "@odata.type": { "type": "string" } } } ], "x-ms-discriminator-value": "#microsoft.graph.workbookComment" }