Last active
June 11, 2020 14:07
-
-
Save edsilv/2228d75d3a912d4c5fb2099bfc69d852 to your computer and use it in GitHub Desktop.
IIIF 3D Manifest
This file contains hidden or 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
| { | |
| "@context": [ | |
| "http://www.w3.org/ns/anno.jsonld", | |
| "http://iiif.io/api/presentation/3/context.json" | |
| ], | |
| "id": "https://example.org/iiif/model1/manifest", | |
| "type": "Manifest", | |
| "label": { "en": [ "Model 1" ] }, | |
| "items": [ | |
| { | |
| "id": "https://example.org/iiif/model1/canvas/p1", | |
| "type": "Canvas", | |
| "items": [ | |
| { | |
| "id": "https://example.org/iiif/model1/page/p1/1", | |
| "type": "AnnotationPage", | |
| "items": [ | |
| { | |
| "id": "https://example.org/iiif/model1/annotation/p0001-model", | |
| "type": "Annotation", | |
| "motivation": "painting", | |
| "body": { | |
| "id": "http://iiif.io/api/presentation/2.1/example/fixtures/resources/model1.glb", | |
| "type": "Model", | |
| "format": "model/gltf-binary" | |
| }, | |
| "target": "https://example.org/iiif/model1/canvas/p1" | |
| } | |
| ] | |
| } | |
| ] | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment