-
Notifications
You must be signed in to change notification settings - Fork 255
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds level0 support for IIIF manifests fixes #2616
- Loading branch information
1 parent
722d811
commit 70030ed
Showing
6 changed files
with
110 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"@context": "http://iiif.io/api/presentation/2/context.json", | ||
"@id": "http://iiif.io/api/presentation/2.0/example/fixtures/1/manifest.json", | ||
"@type": "sc:Manifest", | ||
"label": "Test 1 Manifest: Minimum Required Fields", | ||
"within": "http://iiif.io/api/presentation/2.0/example/fixtures/collection.json", | ||
"sequences": [ | ||
{ | ||
"@type": "sc:Sequence", | ||
"canvases": [ | ||
{ | ||
"@id": "http://iiif.io/api/presentation/2.0/example/fixtures/canvas/1/c1.json", | ||
"@type": "sc:Canvas", | ||
"label": "Test 1 Canvas: 1", | ||
"height": 1800, | ||
"width": 1200, | ||
"images": [ | ||
{ | ||
"@type": "oa:Annotation", | ||
"motivation": "sc:painting", | ||
"resource": { | ||
"@id": "http://iiif.io/api/presentation/2.0/example/fixtures/resources/page1-full.png", | ||
"@type": "dctypes:Image", | ||
"height": 1800, | ||
"width": 1200 | ||
}, | ||
"on": "http://iiif.io/api/presentation/2.0/example/fixtures/canvas/1/c1.json" | ||
} | ||
] | ||
} | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters