-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
43 lines (43 loc) · 1.62 KB
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"@context": "http://iiif.io/api/presentation/2/context.json",
"@id": "https://tomcrane.github.io/fire/manifest.json",
"@type": "sc:Manifest",
"label": "Fire",
"description": "An experiment with time in the Presentation API.",
"sequences": [
{
"@id": "https://tomcrane.github.io/fire/seq1",
"@type": "sc:Sequence",
"canvases": [
{
"@id": "https://tomcrane.github.io/fire/canvas/1",
"@type": "sc:Canvas",
"width": 1000,
"height": 750,
"duration": 120,
"images": [
{
"@id": "https://tomcrane.github.io/fire/annos/anno1",
"@type": "oa:Annotation",
"motivation": "sc:painting",
"resource": {
"@id": "https://tomcrane.github.io/fire/content/main.jpg",
"@type": "dctypes:Image",
"format": "image/jpeg",
"height": 1000,
"width": 750
},
"on": "https://tomcrane.github.io/fire/canvas/1"
}
],
"otherContent": [
{
"@id": "annotations.json",
"@type": "sc:AnnotationList"
}
]
}
]
}
]
}