Changes
Page history
Update IIIF annotation framework
authored
Dec 07, 2022
by
David Rouquet
Show whitespace changes
Inline
Side-by-side
IIIF-annotation-framework.md
View page @
614aef80
...
@@ -19,6 +19,34 @@ The annotations can be directly included in a manifest.
...
@@ -19,6 +19,34 @@ The annotations can be directly included in a manifest.
### General structure
### 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
### Content
#### Id
#### Id
...
...
...
...