Update IIIF annotation framework authored by David Rouquet's avatar David Rouquet
......@@ -19,6 +19,34 @@ The annotations can be directly included in a manifest.
### General structure
A manifest can contain a list of *AnnotationPages* that contain lists of annotation *items*.
```
"annotations":
[
{
"id": "http://localhost:8080/data/demo-content/demo/canvas/1/annotation/1",
"type": "AnnotationPage",
"items": [
{ANNOTATION BLOCK 1.1},
{ANNOTATION BLOCK 1.2},
etc.
]
},
{
"id": "http://localhost:8080/data/demo-content/demo/canvas/1/annotation/2",
"type": "AnnotationPage",
"items": [
{ANNOTATION BLOCK 2.1},
{ANNOTATION BLOCK 2.2},
]
},
{
ANOTHER ANNOTATION PAGE
}
]
```
### Content
#### Id
......
......