Type: object
| Attribute | Type | Description |
|---|---|---|
| id | string | The unique id of the screen node |
| type | string ("AnnotationNode") | - |
| position | Flow Board Position | - |
| width | number | - |
| height | number | - |
| color | Flow Board Node Color | - |
| font_size | string ("small", "medium", "large" or "xlarge") | - |
| font_type | string ("simple", "book-style", "technical" or "handwritten") | - |
| text | string | The text content of the annotation |
| note_type | Screen Annotation Note Type (Optional) | - |
Example
{
"id": "610cd30ff252160033aa5ab9",
"type": "AnnotationNode",
"text": "Example Annotation",
"width": 100,
"height": 100,
"color": {
"r": 255,
"g": 255,
"b": 0,
"a": 1
},
"position": {
"x": 23,
"y": 45
},
"font_size": "small",
"font_type": "simple",
"note_type": {
"id": "6436877c182345f62e94ab8e",
"name": "Requirements",
"color": {
"name": "yellow",
"r": 254,
"g": 207,
"b": 51,
"a": 1
}
}
}