Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 16 additions & 5 deletions iiif-online-workshop/day-three/ranges/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,26 @@ Find the `id` of each Canvas you created in your Manifest. Your structural mapp
{
"id": "http://example.org/iiif/book1/range/top",
"type": "Range",
"label": "Table of Content",
"label": {
"en": [
"Table of Content"
]
},
"viewingHint": "top",
"ranges": [
"items": [
{
"id": "http://example.org/iiif/book1/range/intro",
"type": "Range",
"label": "Introduction",
"canvases": [
"$YOUR_CANVAS_ID"
"label": {
"en": [
"Introduction"
]
},
"items": [
{
"id": "$YOUR_CANVAS_ID",
"type": "Canvas"
}
]
}
]
Expand Down
Loading