Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier for the object. |
| data | object | The editor data representing this comment. |
| documentId | string | Identifier for the document this is related to. |
| parentCommentId | string | Identifier for the comment this is a child of, if any. |
| createdAt | string | The date and time that this object was created |
| createdBy | object | |
| createdById | string | Identifier for the user who created this comment. |
| updatedAt | string | The date and time that this object was last changed |
| resolvedAt | string | The date and time that this comment was resolved, if it has been. |
| resolvedBy | object | |
| resolvedById | string | Identifier for the user who resolved this comment, if any. |
| reactions | array | List of emoji reactions on this comment. |
| anchorText | string | The document text that the comment is anchored to, only included if includeAnchorText=true. |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Comment",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the object.",
"readOnly": true,
"format": "uuid"
},
"data": {
"type": "object",
"description": "The editor data representing this comment."
},
"documentId": {
"type": "string",
"description": "Identifier for the document this is related to.",
"format": "uuid"
},
"parentCommentId": {
"type": "string",
"description": "Identifier for the comment this is a child of, if any.",
"format": "uuid"
},
"createdAt": {
"type": "string",
"description": "The date and time that this object was created",
"readOnly": true,
"format": "date-time"
},
"createdBy": {
"$ref": "#/components/schemas/User"
},
"createdById": {
"type": "string",
"description": "Identifier for the user who created this comment.",
"format": "uuid",
"readOnly": true
},
"updatedAt": {
"type": "string",
"description": "The date and time that this object was last changed",
"readOnly": true,
"format": "date-time"
},
"resolvedAt": {
"type": "string",
"description": "The date and time that this comment was resolved, if it has been.",
"format": "date-time",
"nullable": true,
"readOnly": true
},
"resolvedBy": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/User"
}
]
},
"resolvedById": {
"type": "string",
"description": "Identifier for the user who resolved this comment, if any.",
"format": "uuid",
"nullable": true,
"readOnly": true
},
"reactions": {
"type": "array",
"description": "List of emoji reactions on this comment.",
"items": {
"type": "object"
},
"readOnly": true
},
"anchorText": {
"type": "string",
"description": "The document text that the comment is anchored to, only included if includeAnchorText=true.",
"readOnly": true
}
}
}
Work with this as data
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/comment"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.