# Comment

> A comment pin.

Source: https://mockflow.com/developers/reference/item-types/comment

Send `"type": "comment"`. A primitive the editor draws; it has no MCP tool.

A comment pin. On create, `message` starts the thread. On read, `comments` is the thread: the first entry is the comment, the rest are replies.

### Fields

- `message` (string)
- `color` (string)
- `comments` (object[]): - `id` (string)
  - `message` (string)
  - `username` (string)
  - `firstName` (string)
  - `lastName` (string)
  - `createDate` (string)

## Example

```json
{
  "type": "comment",
  "data": {
    "message": "Interview 5 users",
    "color": "string",
    "comments": [
      {
        "id": "string",
        "message": "Interview 5 users",
        "username": "Q4 Launch Planning",
        "firstName": "Q4 Launch Planning",
        "lastName": "Q4 Launch Planning",
        "createDate": "string"
      }
    ]
  }
}
```
