-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample_manifest.json
50 lines (50 loc) · 1.47 KB
/
example_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
44
45
46
47
48
49
50
{
"@context": "http://iiif.io/api/presentation/3/context.json",
"id": "https://common.org/image/vue-exposition-documenta14/manifest.json", // URI du manifest.json
"type": "Manifest",
"label": {
"fr": [
"Titre de l'image"
]
},
"seeAlso": [
{
"id": "https://common.org/image/vue-exposition-documenta14.xml", // URI vers les métadonnées RDF/XML (Common ou OAI-PMH)
"type": "Dataset",
"label": {
"en": [
"Bibliographic Description in XML"
]
},
"format": "text/xml",
"profile": "http://purl.org/dc/elements/1.1/"
}
],
"metadata": [ // contient les métadonnées dublin core
{
"label": {
"en": [
"dc:creator"
]
},
"value": {
"fr": [
"Camille Henrot"
]
}
},
{
...,
}
],
"rights": "http://creativecommons.org/licenses/by/4.0/", // à modifier
"items": [
{
"id": "https://iiif.io/api/cookbook/recipe/0001-mvm-image/canvas/p1", // URI de l'image servie par Cantaloupe
"type": "Canvas",
"height": 1800, // à modifier en fonction
"width": 1200 // à modifier en fonction
},
// Dans le cas d'une image multi-page, un item par page
]
}