Annotations

Creating an Annotation that highlights a region of Media

Following guidelines from the W3C Web Annotations model and the presentation v3 specifications, a valid annotation in presentation v3 should look like this:

 1      "annotations": [
 2        {
 3          "id": "https://digital.lib.utk.edu/assemble/manifest/galston/696/canvas/0/annotations",
 4          "type": "AnnotationPage",
 5          "items": [
 6            {
 7              "id": "https://digital.lib.utk.edu/assemble/manifest/galston/696/canvas/0/annotations/1",
 8              "type": "Annotation",
 9              "motivation": "commenting",
10              "body": {
11                "type": "TextualBody",
12                "language": "en",
13                "value": "Money or bomb?"
14              },
15              "target": "https://digital.lib.utk.edu/assemble/manifest/galston/696/canvas/0#xywh=3883,1716,143,192"
16            }
17          ]
18        }
19      ]

The AnnotationPage cannot have a label and the value of annotations.items.[#].body.type must be valid towards the W3C Web Annotations model.

The annotations section should be in the top level items section as a peer to id, type, width, height, etc.

 1  "items": [
 2    {
 3      "id": "https://digital.lib.utk.edu/assemble/manifest/galston/696/canvas/0",
 4      "type": "Canvas",
 5      "label": {
 6        "none": [
 7          "Sketch of Gottfried Galston performing at a concert"
 8        ]
 9      },
10      "width": 7291,
11      "height": 3788,
12      "items": [
13      ],
14      "annotations": [
15      ]
16    }
17  ],