Microsoft Word · JSON Structure

Javascript Api Comment Structure

Represents a comment in a Word document.

Type: object Properties: 6
DocumentsMicrosoft 365OfficeProductivityWord Processing

Comment is a JSON Structure definition published by Microsoft Word, describing 6 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id authorName authorEmail content createdDate resolved

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/microsoft-word/refs/heads/main/json-structure/javascript-api-comment-structure.json",
  "name": "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", "description": "Email of the comment author." },
    "content": { "type": "string", "description": "Text content of the comment." },
    "createdDate": { "type": "datetime", "description": "When the comment was created." },
    "resolved": { "type": "boolean", "description": "Whether the comment has been resolved." }
  }
}