# Sticky note

> The sticky note item type.

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

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

### Fields

- `text` (string, required)
- `color` (string): A note swatch name (yellow, peach, pink, lavender, blue, cyan, green, gray) or a hex colour. Defaults to `yellow`.
- `fontSize` (integer)
- `author` (string): Shown on the note. Defaults to the token owner.

## Example

```json
{
  "type": "sticky_note",
  "data": {
    "text": "Interview 5 users",
    "color": "yellow",
    "fontSize": 0,
    "author": "string"
  }
}
```
