Last active
June 6, 2023 14:00
-
-
Save tomcrane/2dc7151c93560a82677ea22fb0290277 to your computer and use it in GitHub Desktop.
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
{ | |
"@context": "http://iiif.io/api/presentation/4/context.json", | |
"id": "https://example.org/iiif/3d/manifest", | |
"type": "Manifest", | |
"label": { "en": [ "I am 3D" ] }, | |
// all your favourite IIIF props are exactly the same | |
"behavior": [ "some", "new", "behaviors", "probably" ], | |
"items": [ | |
{ | |
"id": "https://example.org/iiif/scene1", | |
"type": "Scene", | |
"label": { "en": [ "a scene!" ] }, | |
// .... dimensions - not w,h,d - how do we specify the space? | |
// (if we do that at all... maybe always 0,0,0 and unbound) | |
"items": [ | |
{ | |
"id": "https://example.org/iiif/scene1/page/p1/1", | |
"type": "AnnotationPage", | |
"items": [ | |
{ | |
"id": "https://example.org/iiif/3d/anno1", | |
"type": "Annotation", | |
"motivation": ["painting"], // maybe | |
"body": { | |
"id": "https://example.org/iiif/my-model.someFormat", | |
"type": "Model", | |
"format": "application/something", | |
// dimensions of the thing to be painted/placed | |
}, | |
"target": { | |
// ????????? | |
} | |
} | |
] | |
} | |
] | |
} | |
], | |
"structures": [ | |
// yep can do these too | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment