Microsoft Word · Schema
Comment
Represents a comment in a Word document.
DocumentsMicrosoft 365OfficeProductivityWord Processing
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier of the comment. |
| authorName | string | Name of the comment author. |
| authorEmail | string | Email of the comment author. |
| content | string | Text content of the comment. |
| createdDate | string | When the comment was created. |
| resolved | boolean | Whether the comment has been resolved. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/microsoft-word/refs/heads/main/json-schema/javascript-api-comment-schema.json",
"title": "Comment",
"description": "Represents a comment in a Word document.",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier of the comment."
},
"authorName": {
"type": "string",
"description": "Name of the comment author."
},
"authorEmail": {
"type": "string",
"format": "email",
"description": "Email of the comment author."
},
"content": {
"type": "string",
"description": "Text content of the comment."
},
"createdDate": {
"type": "string",
"format": "date-time",
"description": "When the comment was created."
},
"resolved": {
"type": "boolean",
"description": "Whether the comment has been resolved."
}
}
}