From b8f1e22918c8449e822b6b2cbcbafbcbc0725a00 Mon Sep 17 00:00:00 2001 From: Glen Robson Date: Thu, 22 Jan 2026 15:58:45 +0000 Subject: [PATCH 01/19] Adding Scene example --- .../presentation/4.0/example/02_timeline.json | 20 +++++--- source/presentation/4.0/example/03_scene.json | 51 +++++++++++++++++++ source/presentation/4.0/index.md | 28 +--------- 3 files changed, 64 insertions(+), 35 deletions(-) create mode 100644 source/presentation/4.0/example/03_scene.json diff --git a/source/presentation/4.0/example/02_timeline.json b/source/presentation/4.0/example/02_timeline.json index a5490fbc9..7c2354c7e 100644 --- a/source/presentation/4.0/example/02_timeline.json +++ b/source/presentation/4.0/example/02_timeline.json @@ -20,14 +20,18 @@ { "id": "https://iiif.io/api/presentation/4.0/example/02/page/anno", "type": "Annotation", - "motivation": "painting", - "body": { - "id": "https://fixtures.iiif.io/audio/indiana/mahler-symphony-3/CD1/medium/128Kbps.mp4", - "type": "Sound", - "format": "audio/mp4", - "duration": 1985.024 - }, - "target": "https://iiif.io/api/presentation/4.0/example/02" + "motivation": ["painting"], + "body": [ + { + "id": "https://fixtures.iiif.io/audio/indiana/mahler-symphony-3/CD1/medium/128Kbps.mp4", + "type": "Sound", + "format": "audio/mp4", + "duration": 1985.024 + } + ], + "target": [ + "https://iiif.io/api/presentation/4.0/example/02" + ] } ] } diff --git a/source/presentation/4.0/example/03_scene.json b/source/presentation/4.0/example/03_scene.json new file mode 100644 index 000000000..9728c8553 --- /dev/null +++ b/source/presentation/4.0/example/03_scene.json @@ -0,0 +1,51 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/presentation/4.0/example/03_scene.json", + "type": "Manifest", + "label": { + "en": [ + "Simplest Model Example (IIIF Presentation v4)" + ] + }, + "summary": { + "en": [ + "Viewer should render the model at the scene origin and then add default lighting and camera" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/scene/1", + "type": "Scene", + "label": { + "en": [ + "A Scene" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/scene/1/annotationPage/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/scene/1/annotationPage/1/anno/1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + } + ], + "target": [ + "https://iiif.io/api/presentation/4.0/example/scene/1/annotationPage/1" + ] + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/source/presentation/4.0/index.md b/source/presentation/4.0/index.md index b4e3a57c7..2650a4543 100644 --- a/source/presentation/4.0/index.md +++ b/source/presentation/4.0/index.md @@ -253,33 +253,7 @@ A Container that represents a boundless three-dimensional space, optionally with Scenes may also have the [`duration`][prezi-40-model-duration] property in the same manner as Timelines. -```json -{ - "id": "https://example.org/iiif/presentation/examples/manifest-with-containers/scene", - "type": "Scene", - "items": [ - { - "id": "https://example.org/iiif/presentation/examples/manifest-with-containers/page/p3", - "type": "AnnotationPage", - "items": [ - { - "id": "https://example.org/iiif/presentation/examples/manifest-with-containers/annotation/s1", - "type": "Annotation", - "motivation": ["painting"], - "body": [ - { - "id": "https://iiif.io/api/presentation/example-content-resources/models/astronaut.glb", - "type": "Model", - "format": "model/gltf-binary" - } - ], - "target": ["https://example.org/iiif/presentation/examples/manifest-with-containers/scene"] - } - ] - } - ] -} -``` +{% include code_example.html src="03_scene.json" from=16 to=49 %} Scenes can have time-based and image content in them as well as 3D content. See model for how to do this. From a3abdf593a590edb41355795d4b0d52d09359ae9 Mon Sep 17 00:00:00 2001 From: Glen Robson Date: Wed, 4 Feb 2026 15:53:41 +0000 Subject: [PATCH 02/19] Adding examples --- .../presentation/4.0/example/03_canvas.json | 41 + .../example/{03_scene.json => 04_scene.json} | 2 +- .../presentation/4.0/example/05_fragment.json | 78 + .../4.0/example/06_specific_resource.json | 92 + .../4.0/example/07_collection.json | 22 + .../4.0/example/07_sub_collection.json | 20 + source/presentation/4.0/example/08_range.json | 313 + .../4.0/example/uc01_artwork.json | 137 + .../presentation/4.0/example/uc02_book.json | 201 + .../4.0/example/uc03_anno_collection.json | 8 + .../4.0/example/uc03_anno_page.json | 10647 ++++++++++++++++ .../presentation/4.0/example/uc03_issue1.json | 109 + .../presentation/4.0/example/uc03_issue2.json | 86 + .../4.0/example/uc03_periodical.json | 34 + .../presentation/4.0/example/uc03_vol1.json | 35 + .../presentation/4.0/example/uc03_vol2.json | 14 + source/presentation/4.0/index.md | 534 +- 17 files changed, 11857 insertions(+), 516 deletions(-) create mode 100644 source/presentation/4.0/example/03_canvas.json rename source/presentation/4.0/example/{03_scene.json => 04_scene.json} (96%) create mode 100644 source/presentation/4.0/example/05_fragment.json create mode 100644 source/presentation/4.0/example/06_specific_resource.json create mode 100644 source/presentation/4.0/example/07_collection.json create mode 100644 source/presentation/4.0/example/07_sub_collection.json create mode 100644 source/presentation/4.0/example/08_range.json create mode 100644 source/presentation/4.0/example/uc01_artwork.json create mode 100644 source/presentation/4.0/example/uc02_book.json create mode 100644 source/presentation/4.0/example/uc03_anno_collection.json create mode 100644 source/presentation/4.0/example/uc03_anno_page.json create mode 100644 source/presentation/4.0/example/uc03_issue1.json create mode 100644 source/presentation/4.0/example/uc03_issue2.json create mode 100644 source/presentation/4.0/example/uc03_periodical.json create mode 100644 source/presentation/4.0/example/uc03_vol1.json create mode 100644 source/presentation/4.0/example/uc03_vol2.json diff --git a/source/presentation/4.0/example/03_canvas.json b/source/presentation/4.0/example/03_canvas.json new file mode 100644 index 000000000..3fadf9df5 --- /dev/null +++ b/source/presentation/4.0/example/03_canvas.json @@ -0,0 +1,41 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/presentation/4.0/example/03_canvas.json", + "type": "Manifest", + "label": { + "en": [ + "Simplest Image Example (IIIF Presentation v4)" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/03_canvas/canvas/p1", + "type": "Canvas", + "height": 1800, + "width": 1200, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/03_canvas/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/03_canvas/annotation/p0001-image", + "type": "Annotation", + "motivation": [ "painting" ], + "body": [ + { + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/resources/page1-full.png", + "type": "Image", + "format": "image/png", + "height": 1800, + "width": 1200 + } + ], + "target": [ "https://iiif.io/api/presentation/4.0/example/03_canvas/canvas/p1" ] + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/source/presentation/4.0/example/03_scene.json b/source/presentation/4.0/example/04_scene.json similarity index 96% rename from source/presentation/4.0/example/03_scene.json rename to source/presentation/4.0/example/04_scene.json index 9728c8553..d9479d738 100644 --- a/source/presentation/4.0/example/03_scene.json +++ b/source/presentation/4.0/example/04_scene.json @@ -1,6 +1,6 @@ { "@context": "http://iiif.io/api/presentation/4/context.json", - "id": "https://iiif.io/api/presentation/4.0/example/03_scene.json", + "id": "https://iiif.io/api/presentation/4.0/example/04_scene.json", "type": "Manifest", "label": { "en": [ diff --git a/source/presentation/4.0/example/05_fragment.json b/source/presentation/4.0/example/05_fragment.json new file mode 100644 index 000000000..f20f736e1 --- /dev/null +++ b/source/presentation/4.0/example/05_fragment.json @@ -0,0 +1,78 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/presentation/4.0/example/05_fragment.json", + "type": "Manifest", + "label": { + "en": [ + "Koto, chess, calligraphy, and painting" + ], + "ja": [ + "琴棋書画図屏風" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/05/canvas/p1", + "type": "Canvas", + "height": 3966, + "width": 8800, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/05/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/05/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 3966, + "width": 8800, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + "https://iiif.io/api/presentation/4.0/example/05/canvas/p1" + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/05/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/05/annotation/p0001-comment", + "type": "Annotation", + "motivation": [ "commenting" ], + "body": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/05/annotation/bodies/koto-body", + "type": "TextualBody", + "value": "Koto with a cover being carried", + "language": "en", + "format": "text/plain" + } + ], + "target": [ "https://iiif.io/api/presentation/4.0/example/05/canvas/p1#xywh=1650,1200,925,1250" ] + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/source/presentation/4.0/example/06_specific_resource.json b/source/presentation/4.0/example/06_specific_resource.json new file mode 100644 index 000000000..d04adda90 --- /dev/null +++ b/source/presentation/4.0/example/06_specific_resource.json @@ -0,0 +1,92 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/presentation/4.0/example/06_specific_resource.json", + "type": "Manifest", + "label": { + "en": [ + "Koto, chess, calligraphy, and painting" + ], + "ja": [ + "琴棋書画図屏風" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/06/canvas/p1", + "type": "Canvas", + "height": 3966, + "width": 8800, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/06/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/06/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 3966, + "width": 8800, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004", + "profile": "level1", + "type": "ImageService3" + } + ] + } + ], + "target": [ + "https://iiif.io/api/presentation/4.0/example/06/canvas/p1" + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/06/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/06/annotation/p0001-comment", + "type": "Annotation", + "motivation": [ "commenting" ], + "body": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/06/annotation/bodies/koto-body", + "type": "TextualBody", + "value": "Koto with a cover being carried", + "language": "en", + "format": "text/plain" + } + ], + "target": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/06/resources/koto-sr", + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/06/page/p1/1", + "type": "Canvas" + }, + "selector": { + "id": "https://iiif.io/api/presentation/4.0/example/06/selectors/koto-selector", + "type": "FragmentSelector", + "value": "xywh=1650,1200,925,1250" + } + } + ] + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/source/presentation/4.0/example/07_collection.json b/source/presentation/4.0/example/07_collection.json new file mode 100644 index 000000000..bc8069888 --- /dev/null +++ b/source/presentation/4.0/example/07_collection.json @@ -0,0 +1,22 @@ +{ + "id": "https://iiif.io/api/presentation/4.0/example/07_collection.json", + "type": "Collection", + "label": { "en": [ "Top-level Collection" ] }, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/07_sub_collection.json", + "type": "Collection", + "label": { "en": [ "Sub-Collection 1" ] } + }, + { + "id": "https://iiif.io/api/presentation/4.0/example/02_canvas.json", + "type": "Manifest", + "label": { "en": [ "Manifest 1" ] } + }, + { + "id": "https://iiif.io/api/presentation/4.0/example/05_fragment.json", + "type": "Manifest", + "label": { "en": [ "Manifest 2" ] } + } + ] +} \ No newline at end of file diff --git a/source/presentation/4.0/example/07_sub_collection.json b/source/presentation/4.0/example/07_sub_collection.json new file mode 100644 index 000000000..563b0cbf4 --- /dev/null +++ b/source/presentation/4.0/example/07_sub_collection.json @@ -0,0 +1,20 @@ +{ + "id": "https://iiif.io/api/presentation/4.0/example/07_sub_collection.json", + "type": "Collection", + "label": { + "en": [ + "Sub-Collection" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/06_specific_resource.json", + "type": "Manifest", + "label": { + "en": [ + "Sub collection - Manifest 1" + ] + } + } + ] +} \ No newline at end of file diff --git a/source/presentation/4.0/example/08_range.json b/source/presentation/4.0/example/08_range.json new file mode 100644 index 000000000..1ceae1600 --- /dev/null +++ b/source/presentation/4.0/example/08_range.json @@ -0,0 +1,313 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/presentation/4.0/example/08_range.json", + "type": "Manifest", + "label": { + "en": [ + "Ethiopic Ms 10" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/08/canvas/p1", + "type": "Canvas", + "label": { + "en": [ + "f. 1r" + ] + }, + "height": 2504, + "width": 1768, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/08/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/08/annotation/p0001-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 2504, + "width": 1768, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + "https://iiif.io/api/presentation/4.0/example/08/canvas/p1" + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/presentation/4.0/example/08/canvas/p2", + "type": "Canvas", + "label": { + "en": [ + "f. 1v" + ] + }, + "height": 2512, + "width": 1792, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/08/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/08/annotation/p0002-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-2-21198-zz001d8m5j_774612_master/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 2512, + "width": 1792, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-2-21198-zz001d8m5j_774612_master", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + "https://iiif.io/api/presentation/4.0/example/08/canvas/p2" + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/presentation/4.0/example/08/canvas/p3", + "type": "Canvas", + "label": { + "en": [ + "f. 2r" + ] + }, + "height": 2456, + "width": 1792, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/08/page/p3/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/08/annotation/p0003-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-3-21198-zz001d8tm5_775004_master/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 2456, + "width": 1792, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-3-21198-zz001d8tm5_775004_master", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + "https://iiif.io/api/presentation/4.0/example/08/canvas/p3" + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/presentation/4.0/example/08/canvas/p4", + "type": "Canvas", + "label": { + "en": [ + "f. 2v" + ] + }, + "height": 2440, + "width": 1760, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/08/page/p4/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/08/annotation/p0004-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-4-21198-zz001d8tnp_775007_master/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 2440, + "width": 1760, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-4-21198-zz001d8tnp_775007_master", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + "https://iiif.io/api/presentation/4.0/example/08/canvas/p4" + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/presentation/4.0/example/08/canvas/p5", + "type": "Canvas", + "label": { + "en": [ + "f. 3r" + ] + }, + "height": 2416, + "width": 1776, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/08/page/p5/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/08/annotation/p0005-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-5-21198-zz001d8v6f_775077_master/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 2416, + "width": 1776, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-5-21198-zz001d8v6f_775077_master", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + "https://iiif.io/api/presentation/4.0/example/08/canvas/p5" + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/presentation/4.0/example/08/canvas/p6", + "type": "Canvas", + "label": { + "en": [ + "f. 3v" + ] + }, + "height": 2416, + "width": 1776, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/08/page/p6/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/08/annotation/p0006-image", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-6-21198-zz001d8v7z_775085_master/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 2416, + "width": 1776, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-6-21198-zz001d8v7z_775085_master", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + "https://iiif.io/api/presentation/4.0/example/08/canvas/p6" + ] + } + ] + } + ] + } + ], + "structures": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/08/range/r0", + "type": "Range", + "label": { "en": [ "Table of Contents" ] }, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/08/canvas/p1", + "type": "Canvas", + "label": { "en": [ "Page 1" ] } + }, + { + "id": "https://iiif.io/api/presentation/4.0/example/08/canvas/p2", + "type": "Canvas", + "label": { "en": [ "Page 2" ] } + }, + { + "id": "https://iiif.io/api/presentation/4.0/example/08/chapter2", + "type": "Range", + "label": { "en": [ "Chapter 2" ] }, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/08/canvas/p3", + "type": "Canvas", + "label": { "en": [ "Page 3" ] } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/source/presentation/4.0/example/uc01_artwork.json b/source/presentation/4.0/example/uc01_artwork.json new file mode 100644 index 000000000..687fc5e01 --- /dev/null +++ b/source/presentation/4.0/example/uc01_artwork.json @@ -0,0 +1,137 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/presentation/4.0/example/uc01_artwork.json", + "type": "Manifest", + "label": { + "en": [ + "Use case 1: Artwork" + ] + }, + "metadata": [ + { + "label": { + "en": [ + "Artist" + ] + }, + "value": { + "en": [ + "Henry Gillard Glindoni" + ] + } + }, + { + "label": { + "en": [ + "Date" + ] + }, + "value": { + "en": [ + "1800-1899" + ] + } + } + ], + "summary": { + "en": [ + "A longer piece of text to be shown when the metadata is not." + ] + }, + "rights": "http://creativecommons.org/licenses/by-nc/4.0/", + "homepage": [ + { + "id": "https://wellcomecollection.org/works/nydjbrr7", + "type": "Text", + "format": "text/html", + "label": { + "en": [ + "Homepage for artwork" + ] + } + } + ], + "thumbnail": [ + { + "id": "https://fixtures.iiif.io/images/Wellcome/thumbnail.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 200, + "height": 123 + } + ], + "provider": [ + { + "id": "https://example.org/about", + "type": "Agent", + "label": { + "en": [ + "Example Organization" + ] + }, + "homepage": [ + { + "id": "https://wellcomecollection.org", + "type": "Text", + "label": { + "en": [ + "Example Organization Homepage" + ] + }, + "format": "text/html" + } + ], + "logo": [ + { + "id": "https://example.org/images/logo.png", + "type": "Image", + "format": "image/png", + "height": 100, + "width": 120 + } + ] + } + ], + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/09/canvas", + "type": "Canvas", + "width": 6000, + "height": 3813, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/09/page/p2", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/09/annotation/c1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": [ + { + "id": "https://iiif.io/api/presentation/example/image/painting/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 2000, + "height": 1271, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural", + "type": "ImageService3", + "profile": "level1" + } + ] + } + ], + "target": [ + "https://iiif.io/api/presentation/4.0/example/09/canvas" + ] + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/source/presentation/4.0/example/uc02_book.json b/source/presentation/4.0/example/uc02_book.json new file mode 100644 index 000000000..a409ce238 --- /dev/null +++ b/source/presentation/4.0/example/uc02_book.json @@ -0,0 +1,201 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/presentation/4.0/example/uc02_book.json", + "type": "Manifest", + "label": { "en": ["Use case 2: Book"] }, + "behavior": ["paged"], + "viewingDirection": "left-to-right", + "start": { + "id": "https://iiif.io/api/presentation/4.0/example/uc02/canvas/p2", + "type": "Canvas" + }, + "rendering": [ + { + "id": "https://fixtures.iiif.io/images/BnF/12148_bpt6k1526005v/book.pdf", + "type": "Text", + "label": { "en": ["PDF version"] }, + "format": "application/pdf" + } + ], + "requiredStatement": { + "label": { "en": ["Attribution"] }, + "value": { "en": ["Provided courtesy of Example Institution"] } + }, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc02/canvas/p1", + "type": "Canvas", + "label": { "en": [ "Blank page" ] }, + "height": 4613, + "width": 3204, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc02/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc02/annotation/p0001-image", + "type": "Annotation", + "motivation": ["painting"], + "body": [{ + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 4613, + "width": 3204, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18", + "type": "ImageService3", + "profile": "level1" + } + ] + }], + "target": ["https://iiif.io/api/presentation/4.0/example/uc02/canvas/p1"] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/presentation/4.0/example/uc02/canvas/p2", + "type": "Canvas", + "label": { "en": [ "Frontispiece" ] }, + "width": 3186, + "height": 4612, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc02/page/p2/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc02/annotation/p0002-image", + "type": "Annotation", + "motivation": ["painting"], + "body": [{ + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f19/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 3186, + "height": 4612, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f19", + "type": "ImageService3", + "profile": "level1" + } + ] + }], + "target": ["https://iiif.io/api/presentation/4.0/example/uc02/canvas/p2"] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/presentation/4.0/example/uc02/canvas/p3", + "type": "Canvas", + "label": { "en": [ "Title page" ] }, + "width": 3204, + "height": 4613, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc02/page/p3/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc02/annotation/p0003-image", + "type": "Annotation", + "motivation": ["painting"], + "body": [{ + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f20/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 3204, + "height": 4613, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f20", + "type": "ImageService3", + "profile": "level1" + } + ] + }], + "target": ["https://iiif.io/api/presentation/4.0/example/uc02/canvas/p3"] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/presentation/4.0/example/uc02/canvas/p4", + "type": "Canvas", + "label": { "en": [ "Blank page" ] }, + "width": 3174, + "height": 4578, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc02/page/p4/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc02/annotation/p0004-image", + "type": "Annotation", + "motivation": ["painting"], + "body": [{ + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f21/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 3174, + "height": 4578, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f21", + "type": "ImageService3", + "profile": "level1" + } + ] + }], + "target": ["https://iiif.io/api/presentation/4.0/example/uc02/canvas/p4"] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/presentation/4.0/example/uc02/canvas/p5", + "type": "Canvas", + "label": { "en": [ "Bookplate" ] }, + "width": 3198, + "height": 4632, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc02/page/p5/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc02/annotation/p0005-image", + "type": "Annotation", + "motivation": ["painting"], + "body": [{ + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f22/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 3198, + "height": 4632, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f22", + "type": "ImageService3", + "profile": "level1" + } + ] + }], + "target": ["https://iiif.io/api/presentation/4.0/example/uc02/canvas/p5"] + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/source/presentation/4.0/example/uc03_anno_collection.json b/source/presentation/4.0/example/uc03_anno_collection.json new file mode 100644 index 000000000..658d7b34d --- /dev/null +++ b/source/presentation/4.0/example/uc03_anno_collection.json @@ -0,0 +1,8 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/presentation/4.0/example/uc03_anno_collection.json", + "type": "AnnotationCollection", + "label": {"en": ["Full text of the first article"]}, + "first": { "id": "https://iiif.io/api/presentation/4.0/example/uc03_anno_page.json", "type": "AnnotationPage" }, + "last": { "id": "https://iiif.io/api/presentation/4.0/example/uc03_anno_page.json", "type": "AnnotationPage" } +} \ No newline at end of file diff --git a/source/presentation/4.0/example/uc03_anno_page.json b/source/presentation/4.0/example/uc03_anno_page.json new file mode 100644 index 000000000..38cebaa52 --- /dev/null +++ b/source/presentation/4.0/example/uc03_anno_page.json @@ -0,0 +1,10647 @@ + { + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/presentation/4.0/example/uc03_anno_page.json", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-1", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "I. 54. Jahrgang" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,376,399,53" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-2", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Nr. 29" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=309,817,121,39" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-3", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Chef-Redakteur Theodor Wolfi in Berlin, 7" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=95,876,619,31" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-4", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "DB T. W. Mit Bewunderung ſtehen wir vor dem erfreulichen" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=54,1233,894,35" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-5", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "men, Wifer einer Staat3anwaltſchaft, die jeht ſogar ihre Nachtruhe" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,1268,950,34" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-6", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "einnpiert, während ſie in einigen bekannten Fällen ſchon" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,1300,950,34" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-7", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "mi Tage zu ſchlummern ſchien. Aber nachdem man ge-" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,1335,950,39" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-8", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "d Wingt. Auch draußen in der Welt wird noch eine Weile lang" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,1996,952,34" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-28", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": ") ohne Mos ſo weitergehen wie biöher. Es wird unermüdlich über" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,2029,953,33" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-29", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ee Schulden geſprochen werden, die Frankreich nicht bezahlen" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,2056,952,41" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-30", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ann, ill, und über den Sicherheitspakt, der wegen der öſtlichen An-" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,2096,953,43" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-31", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Mn 7 ingjel keine Liebe in England findet, und über den Kontroll-" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,2129,952,47" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-32", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "+ SausFricht, den man un3 immer noch vorenthält. Hat es viel" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,2162,953,33" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-33", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "jiliale Woc>, noch Worte in dieſe Diskuſſionen hineinzugießen, die" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,2194,953,35" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-34", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "on aus zahlloſen Quellen übereich gewäſſert werden und" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=102,2229,851,34" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-35", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "endlich weiterrinnen? ES iſt zum mindeſten ebenſo inter-" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=103,2260,850,36" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-36", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "einfach!" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=7,2249,63,21" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-37", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "m, fert" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,2273,73,19" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-38", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "iberiagant, ſich mit den drei jungen Männern, den zwei Reichs-" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,2294,953,37" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-39", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "mrn hen und dem Balten, zu beſchäftigen, die ſeit dem Monat" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,2327,954,39" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-40", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ſtraße" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,2370,62,22" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-41", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "tober in den Händen der allgütigen ruſſiſchen Tſcheka ſind." + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=103,2359,850,37" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-42", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Tiefe drei jungen Männex, der ſchon mit dem Doktortitel" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=111,2392,843,37" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-43", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "wuierte dreiundzwanzigjährige Geograph, und die beiden" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=41,2425,908,39" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-44", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "= arifudenten, ſind angeblich mit der Abſicht, die Hauptperſonen" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,2458,955,38" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-45", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": ", Sin Sowjetſtaates zu ermorden, nach Moskau gekommen. Sie" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,2491,955,37" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-46", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "en zwär nicht Paß und Einreiſeerlaubnis, deren Echtheit" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=111,2525,843,34" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-47", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ee ht beſtritten werden kann, aber Einladungsbriefe ruſſiſcher" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,2553,955,47" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-48", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "15. PWudentenſchaften, auf die ſie ſich beriefen, gefälſcht haben," + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,2589,956,38" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-49", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Tage Wd man hat, wie verſichert wird, auch Waffen und die un-" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=8,2624,948,36" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-50", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "6 Mbehrlichen Giftfläſchhen bei ihnen entde>t. Die drei ge-" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,2655,957,38" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-51", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "te en, ſagt die Tſcheka, recht3radikalen Geheimbünden in" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,2684,955,47" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-52", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": ", MaiWutſhland an. Bei ihren Mordplänen hatten ſie es be-" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,2725,956,34" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-53", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "“ „Mders auf Stalin und Troßki abgeſehen. Uns anderen er-" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,2758,955,34" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-54", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "men-," + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,2788,60,16" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-55", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ndau Wint es zunächſt ſeltſam, daß rechtsradikale Geheimgruppen," + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=4,2790,952,38" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-56", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "3 14531." + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,2830,74,27" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-57", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "bisher nur politiſche Gegner in Deutſchland niederknallten" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=115,2824,840,34" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-58", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "inaſd den Bolſchewismus als beſten Bundesgenoſſen betrachten," + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=50,2858,906,35" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-59", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "4 Jdee gefaßt haben ſollten, den heute ziemlich einfluß-" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=54,2891,901,36" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-60", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Offeruſüſn Troßki umzubringen. Wa3 das Gift betrifft, fo iſt von" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=24,2924,931,34" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-61", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "1f VoſYk fſtudentiſhen Freunden der Verhafteten in der" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,2955,956,37" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-62", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "liner Apotheke, die es geliefert hat, feſtgeſtellt worden, daß" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=106,2991,850,34" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-63", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ehlt ftſein Mittel gegen Malaria iſt. Jndeſſen, die Tſcheka erklärt" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,3023,955,35" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-64", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "-harloi\" daß ſie imſtande ſei, all' unſere Zweifel zu zerſtreuen." + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,3057,954,35" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-65", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "einf beſitt „Dokumente“, die ſie leider nicht zeigt. Nachdem" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,3087,956,45" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-66", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "* Bongſtvollen Eltern, die deutſchen Amtsſtellen, die ange-" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=57,3123,899,36" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-67", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "rus Zifwnſten deutſchen Univerſitätzlehrer und andere Perſonen" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1,3158,954,34" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-68", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Mme | Monate hindurch vergeblich verſucht hatten, irgendeine" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=2,3189,955,46" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-69", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ße 485, Whricht über das Befinden der Eingekerkerten zu erlangen," + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1,3223,955,36" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-70", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "man in der vorigen Woche dem Rektor der Berliner" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=129,3258,828,33" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-71", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ganteſte Wverſität, Profeſſor Holl, der ſich warmherzig für" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,3290,957,35" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-72", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ee Freilaſſung eingeſeßt hatte, einen Brief des" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,3320,957,43" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-73", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "-g 5140. WW. Kindermann überbracht. Kindermann ſagt in" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,3357,956,33" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-74", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "yer, Wem Briefe, „die durch G. P. U. unternommenen Nach-" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,3391,955,40" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-75", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "6 (Mh ungen“ hätten ergeben, daß ſeine beiden Reiſekameraden" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1,3419,954,40" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-76", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "et, Miher in Deutſchland in faſciſtiſchen «Kreiſen ſich betätigt" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,3441,957,50" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-77", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "En en“, und „daß ihre Reiſeabſichten andre als wiſſenſchaft-" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=3,3491,953,46" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-78", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "| 1]" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,3524,47,13" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-79", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "raße M: geweſen ſeien. Er ſelbſt habe davon nichts gewußt und" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,3524,956,41" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-80", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "e fich „während der Unterſuchung von der Objektivität" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=119,3559,838,34" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-81", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "tklaffiz. MW Unterſuchungsorgane überzeugt“. Er habe zu dieſen Or-" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,3592,957,38" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-82", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "EEE en „vollkommenes Vertrauen“. Der Verhaftete bittet de8halb" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,3617,958,49" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-83", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "en, über die man" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=5,3751,955,41" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-87", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ße 19 Weutſchland ſpricht, habe ich in der Zeit meiner Verhaftung" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,3791,961,40" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-88", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "trbeit. Wb. P. U. nichts bemerken können.\" Am Schluſſe verſichert" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,3822,960,44" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-89", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "33. Briefſchreiber, er gebe „dieſe Erklärungen aus freiem" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,3859,961,38" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-90", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Tag Wen und freier Jnitiative“ ab, und „ohne jeden Zwang“." + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,3892,962,39" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-91", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "be M. zu ſich ja jeder das Seinige denken kann. ." + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,3922,872,44" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-92", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "* wide Verwandten, die Lehrer und Freunde der jungen" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,3956,961,44" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-93", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "m Kine werden die Erzählungen, die nun von der „Jſtweſtia" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,3991,949,39" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-94", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Heider Wroitet und in die Welt hinausgeſchikt werden, mit" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,4025,963,34" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-95", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Ei ielleiht immer noh" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,4056,963,29" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-96", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "fer Ueberraſchung leſen und vielleich 3 )" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=64,4059,896,40" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-97", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "228 feln, obgleih natürlih au< ſie der bewährten" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,4078,963,53" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-98", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ante Wfa das allergrößte Bertrauen entgegenbringen." + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,4125,962,38" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-99", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "reiſen. Mn biaher hatten ſie ſich von dem Weſen, den" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,4154,963,44" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-100", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "hrung \"Wen und Anſchauungen beſonders des Kindermann und des" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,4194,965,33" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-101", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "aſtr. %Wiſcht ein 208 anderes Bild gemacht. I< habe" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,4198,965,68" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-102", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "är; drei eines Tages kennen gelernt, als ſie, mit den Empfeh" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,4251,964,52" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-103", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "n. Hanſen hervorragender Profeſſoven, linksſtehender und rechts-" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,4293,966,41" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-104", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "fertig\" Wender, ausgerüſtet und ſchon mit allen Päſſen, Scheinen" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,4327,966,43" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-105", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "168 7388. d Einladungen verſehen, bei mir vorſprachen und, gleich" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,4356,967,43" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-106", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "“Str. Men anderen, fragten, 'ob Reiſeberichte willkommen ſeien." + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,4389,966,47" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-107", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ſuchten ſie, offenbar hier und dort anpochend -- auch bei" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=136,4427,831,40" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-108", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "duſtriefirmen, was man ihnen jeßt in Mozkau als „Handels" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=127,4458,838,44" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-109", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "reiswert." + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=2,4474,88,20" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-110", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Berliner" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=161,459,1063,329" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-111", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "und Handels-Zeitung" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=920,826,1034,88" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-112", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Die Verhaftungen in Moskau,." + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=377,1017,2132,178" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-113", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "PEET Rg R RRgRRRgRgpRpPpPr ry yr rT NR" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=975,1923,14,1675" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-114", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Abend-Ausgabe" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1161,365,508,105" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-115", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Tageblatt" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1576,453,1127,339" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-116", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Einzel-Nummer 10 Pfennig." + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=2317,349,479,59" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-117", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Prentice debbie" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=2318,395,479,26" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-118", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Montag. 16. Februar 19235" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=2246,813,499,44" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-119", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Druck und Verlaa von Ru doi Moſſe in Berlin.\"" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=2172,866,653,35" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-120", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "die eingekerkerten jungen Deutſchen." + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1087,1230,1655,139" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-121", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Bas. die Tſcheka behauptet." + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1159,1413,573,60" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-122", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Celegramm unſere8 Korretyrondenten.)" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1087,1485,719,29" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-123", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "dü.) Moskau, 15. Februar." + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1473,1529,378,31" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-124", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Anknüpfend an eine bevorſtehende Interpellation der Sozial-" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1044,1565,849,33" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-125", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "demofkraten im Reichstag über die Gefangenhaltung der drei" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1003,1599,889,29" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-126", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "jungen Deutſchen in Moskau und andere deutſche Gefangene, die aus" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1004,1631,889,29" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-127", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "politiſchen Gründen in ruſſiſchen Gefängniſſen feſtgehalten würden," + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1004,1664,890,29" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-128", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ſchreibt die „Jsweſtija“, dieſe Interpellation ſei durch die Or-" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1004,1695,891,31" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-129", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ganiſation Conſul vorbereitet (!!), die durch Finanz-" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1005,1729,889,30" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-130", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "und Handelsfreiſe auf die Sozialdemokraten eingewirkt habe. Die" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1005,1762,890,30" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-131", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "„Jsweſtija“ beklagt ſich weiter über die Kampagne der deutſchen" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1005,1795,890,31" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-132", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Blätter, welche die Beziehungen zu Sowjetrußland verſchlechtern" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1004,1828,891,30" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-133", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ſolle, und fährt dann fort: „Wir ſind in der Lage, an Hand un-" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1006,1860,890,31" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-134", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "beſtreitbarer Dokumente, die der Sowjetregierung zur Verfügung" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1005,1893,891,32" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-135", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ſtehen, nachzuweiſen, daß dieſe „jungen Gelehrten Fälſcher von" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1005,1926,891,31" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-136", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Dokumenten und Spione ſind, die eine deutſche" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1005,1958,892,32" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-137", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "faſciſtiſche Organiſation zu terroriſtiſchen" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1005,1991,891,32" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-138", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Zwecken nach Moskau abkommandierte . . . .“ „Die Or-" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1005,2024,892,32" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-139", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ganiſation „Conſul“ hat - bereits 1923 beſchloſſen," + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1005,2057,892,31" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-140", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ihre terroriſtiſche Tätigkeit auszudehnen und einen Plan" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1007,2090,891,31" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-141", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ausgearbeitet für Attentate auf hervorragende kommuniſtiſche" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1006,2123,892,31" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-142", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Staatsmänner in. Mos8kau. Im Dezember 1923 wurde eine" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1008,2156,890,31" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-143", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Gruppe Karl Kindermann8 mit der Ausführung" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1007,2188,891,32" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-144", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "des Planes auf ruſſiſchem Boden beauftragt. Im Juli 1924 hatte ſie" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1007,2222,891,31" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-145", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ſchon ganz beſtimmte Anweiſungen erhalten, deren erſte Opfer" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1005,2253,892,32" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-146", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ſowjetruſſiſche Staat8männer in MoSkau ſein" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1006,2287,891,31" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-147", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ſollten. Die „Jsweſtija“ behauptet, daß zur Maxsfierung ihrer" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1008,2320,890,33" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-148", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Abſichten die jekt Verhafteten fich an die Kommuniſtiſche Partei" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1005,2352,891,33" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-149", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "heranmachten,“ uur in- die ton muniſtiſchen Kreiſe Moskaus einzu" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1005,2387,894,33" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-150", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "dringen. Sie fälſchten die Mitgliedskarten (Warum? Sie konnten" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1005,2419,893,32" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-151", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ja ecwies, die er bis" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1015,4047,890,35" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-234", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "dahin von einem ihn zu reaktionär dünkenden Gönner erhielt." + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1016,4080,889,37" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-235", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Statt weiterer Bekundungen will ich, mit einigen Kürzungen," + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1016,4114,890,37" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-236", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "die Schilderung hierher ſeen, die mir ſein Vater, ein in Bop-" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1016,4148,889,36" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-237", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "pard lebender ehemaliger Gymnaſialprofeſſor, entwirft:" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1016,4181,793,36" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-238", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "„Herzlichen Dank für Jhr Freundliches Schreiben, das mir" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1083,4217,822,31" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-239", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "68jährigem Mann ungemein wohlgetan hat. Was nun die hFe-" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1041,4247,864,33" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-240", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "wünſchten Aufflärungen über Theo angeht, ſo hängen dieſe mit" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1042,4277,864,33" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-241", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "meiner eigenen Stellung zur Kirche und zum Staate eng zu-" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1042,4307,863,34" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-242", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ſammen. JH bin Anhänger der darwiniſtiſchen Theorie. Jn" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1042,4337,863,33" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-243", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "politiſcher Hinſicht bin ih Staat3ſozialiſt, wenn ich auch" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1043,4367,863,32" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-244", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "weder der ſozialdemokratiſchen noch kommuniſtſhen Partei ange-" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1043,4397,862,32" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-245", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "höre; ich dürfte ungefähr der Richtung de? „Berliner Tageblattes“\"" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1043,4427,861,33" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-246", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "anzugliedern ſein, obwohl ich mich von jeder aktiven politiſchen" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1044,4458,862,34" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-247", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Beteiligung biöher vollſtändig ferngehalten habe und ſeit meiner" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1980,2743,866,35" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-248", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "vor 17 Jahren nachgeſuchten und erhaltenen Penſionierung nur" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1980,2774,866,34" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-249", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "den Wiſſenſchaften gelebt habe. Jm übrigen tolerant" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1980,2803,868,37" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-250", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "laſſe ich jeden nach jeiner Manier ſelig werden. Sie werden es" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1979,2830,869,41" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-251", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "alfo verſtehen, daß ich meinem Sohn bei feinem im September" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1978,2861,870,37" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-252", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "vorigen Jahres erfolgten Beſuch keine Schwierigkeiten in den Weg" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1980,2890,869,35" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-253", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "gelegt habe, als er mir geſtand, daß er zur kommuni ſtiſchen" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1979,2920,869,37" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-254", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Partei übergegangen ſei. Wer nicht rechts gehen kann," + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1979,2951,871,37" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-255", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "mag links gehen. Der Verluſt ſeines Vermögens durch die IJnfla1-" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1980,2979,869,36" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-256", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "tion, die ihn nötigte, ſich ſelbſt durchzuſchlagen, mag wohl nebſt" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1980,3010,868,34" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-257", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "der Bekanntſchaft mit zahlreichen ruſſiſchen und deutſchen Kom-" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1980,3039,870,35" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-258", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "muniſten die Hauptveranlaſſung dazu geweſen ſein. Außerdem" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1981,3070,869,34" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-259", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "hat ihn eine Nede des früheren Rektors der Univerſität erbittert," + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1981,3098,869,34" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-260", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "der öffentlich erklärte, er wolle keine Werkſtudenten haben. Aus" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1981,3127,870,36" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-261", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "allen dieſen Gründen hat Theo mit ſeinen früheren Anſchauungen" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1981,3157,870,36" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-262", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "gebrochen und ſogar, wie er mir erzählte, in kommuniſti-" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1981,3188,871,34" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-263", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ſchen Kreiſen in Berlin einen Vortrag über E ntwi>klu ng" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1982,3216,870,35" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-264", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "des Sozialismus gehalten. Wenn Theo ſeine offizielle An-" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1982,3245,871,36" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-265", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "meldung bei der kommuniſtiſchen Partei, Wm ſeine Einſchrei-" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1982,3271,871,43" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-266", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "bung als Mitglied verſäumt hat, ſo iſt dies wohl hauptſächlieh der" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1982,3306,871,32" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-267", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Bummelei zuzuſchreiben; daß er fich nicht angemeldet haben ſoll," + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1983,3335,870,31" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-268", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "wundert mich übrigens." + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1983,3367,306,29" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-269", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "1922 war Theo mit meiner Zuſtimmung auf Veranlaſſung ſeines" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=2028,3409,827,35" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-270", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ehemaligen Prinzipals (Theo hat vor dem Brot geteilt; er war außerordentlich beliebt und eine" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1984,3856,874,33" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-285", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "biedere, allzu gutmütige Seele. Sein Hauptfehler iſt Mangel an" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1983,3887,874,33" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-286", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Vorſicht. Im übrigen iſt er eine praktiſche Natur. Mit ſeinem" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1984,3916,873,32" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-287", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "mehr wiſſenſchaftlich veranlagten Freunde Kindermann hat er ge-" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1983,3946,873,32" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-288", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "meinſchaftlich das Neiſeprojekt entworfen, von dem er ſich durch Film-" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1984,3974,873,35" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-289", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "aufnahmen günſtige pekuniäre Reſultate verſprach. Hauptgrund aber" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1984,4004,872,33" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-290", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "war bei beiden ein ungezügelter Reiſetrieb und Abenteuerluſt." + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1983,4034,874,34" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-291", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Beiden fehlte die nötige Erfahrung und Kenntnis der Zuſtände" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1983,4063,872,35" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-292", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "in Rußland." + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1983,4092,152,30" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-293", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Kap Tſcheljuſkin und das vulkaniſche Kamtſchatka hat ſie be-" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=2025,4137,830,36" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-294", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "onders angeloc>t. Die Tſcheka hat dieſe Angaben zu der Anklage" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1993,4168,861,35" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-295", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "benußt, daß ſie Mitglieder der Orgeſch ſeien, die mit Weißgardiſten" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1984,4197,870,36" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-296", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "in Verbindung ſtänden. Bekanntlich haben vor einiger Zeit in" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1983,4226,870,36" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-297", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Kamtſchatka erbitterte Kämpfe zwiſchen Weißgardiſten und der" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1983,4254,870,37" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-298", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Roten Armee ſtatgefunden. Doch davon hatten die beiden harm-" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1982,4285,872,36" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-299", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "loſen Studenten gar keine Ahnung. Daß Theo größere Kenntnis" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1983,4311,871,44" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-300", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "von den Plänen Ditmars gehabt habe als Kindermann iſt Un-" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1982,4345,870,36" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-301", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ſinn. Theo und Ditmar ſtanden, wie Vater Kindermann" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1984,4374,870,35" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-302", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ſchreibt, wie Hund und Kaß. An Ditmars Schuld glaube" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1984,4398,870,45" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-303", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ich niht. Für die Wahrheit der von mir über Theo gemachten" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1983,4433,870,39" + } + } + ] + }, + { + "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-304", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Angaben ſtehe ich unbedingt ein." + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1983,4462,423,35" + } + } + ] + } + ] + } \ No newline at end of file diff --git a/source/presentation/4.0/example/uc03_issue1.json b/source/presentation/4.0/example/uc03_issue1.json new file mode 100644 index 000000000..15419ac24 --- /dev/null +++ b/source/presentation/4.0/example/uc03_issue1.json @@ -0,0 +1,109 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest", + "label": { "de": [ "Berliner Tageblatt - 1925-02-16" ] }, + "behavior": ["paged"], + "navDate": "1925-02-16T00:00:00Z", + "rights": "http://creativecommons.org/publicdomain/mark/1.0/", + "requiredStatement": { + "label": { "en": [ "Attribution" ] }, + "value": { + "en": [ + "

Berliner Tageblatt - Staatsbibliothek zu Berlin - Preußischer Kulturbesitz. Public Domain Mark - http://creativecommons.org/publicdomain/mark/1.0/

" + ] + } + }, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "label": { "en": [ "p. 1" ] }, + "height": 5000, + "width": 3602, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/annotation_page_painting/ap1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/annotation/p1", + "type": "Annotation", + "motivation": ["painting"], + "body": [{ + "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p1/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p1", + "type": "ImageService3", + "profile": "level1" + } + ] + }], + "target":["https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1"] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p2", + "type": "Canvas", + "label": { "none": [ "p. 2" ] }, + "height": 5000, + "width": 3602, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/annotation_page_painting/ap2", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/annotation/p2", + "type": "Annotation", + "motivation": ["painting"], + "body": [{ + "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-p2", + "type": "ImageService3", + "profile": "level1" + } + ] + }], + "target": ["https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p2"] + } + ] + } + ] + } + ], + "structures": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/range/r0", + "type": "Range", + "label": { "en": ["February 16, 1925"] }, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/range/r1", + "type": "Range", + "label": { "en": ["The arrests in Moscow"] }, + "supplementary": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_anno_collection.json", + "type": "AnnotationCollection" + }, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas" + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/source/presentation/4.0/example/uc03_issue2.json b/source/presentation/4.0/example/uc03_issue2.json new file mode 100644 index 000000000..bb38ce809 --- /dev/null +++ b/source/presentation/4.0/example/uc03_issue2.json @@ -0,0 +1,86 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "type": "Manifest", + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue2.json", + "label": { "de": [ "Berliner Tageblatt - 1925-03-13" ] }, + "behavior": ["paged"], + "navDate": "1925-03-13T00:00:00Z", + "rights": "http://creativecommons.org/publicdomain/mark/1.0/", + "requiredStatement": { + "label": { "en": [ "Attribution" ] }, + "value": { + "en": [ + "

Berliner Tageblatt - Staatsbibliothek zu Berlin - Preußischer Kulturbesitz. Public Domain Mark - http://creativecommons.org/publicdomain/mark/1.0/

" + ] + } + }, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue2/canvas/p1", + "type": "Canvas", + "label": { "en": [ "p. 1" ] + }, + "height": 5000, + "width": 3602, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue2/annotation_page_painting/ap1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue2/annotation/p1", + "type": "Annotation", + "motivation": ["painting"], + "body": [{ + "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-issue2-p1/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-issue2-p1/", + "type": "ImageService3", + "profile": "level1" + } + ] + }], + "target": ["https://iiif.io/api/presentation/4.0/example/uc03_issue2/canvas/p1"] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue2/canvas/p2", + "type": "Canvas", + "label": { "en": [ "p. 2" ] }, + "height": 5000, + "width": 3602, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue2/annotation_page_painting/ap2", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue2/annotation/p2", + "type": "Annotation", + "motivation": ["painting"], + "body": [{ + "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-issue2-p2/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-issue2-p2", + "type": "ImageService3", + "profile": "level1" + } + ] + }], + "target": ["https://iiif.io/api/presentation/4.0/example/uc03_issue2/canvas/p2"] + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/source/presentation/4.0/example/uc03_periodical.json b/source/presentation/4.0/example/uc03_periodical.json new file mode 100644 index 000000000..2a75cb8c7 --- /dev/null +++ b/source/presentation/4.0/example/uc03_periodical.json @@ -0,0 +1,34 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/presentation/4.0/example/uc03_periodical.json", + "type": "Collection", + "label": { "en": ["Berliner Tageblatt"] }, + "behavior": ["multi-part"], + "navPlace": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03/place/1", + "type": "FeatureCollection", + "features": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03/feature/1", + "type": "Feature", + "properties": { "label": { "en": ["Berlin, Germany"] } }, + "geometry": { + "type": "Point", + "coordinates": [52.52, 13.405] + } + } + ] + }, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_vol1.json", + "type": "Collection", + "label": { "en": ["Berliner Tageblatt - 1925"] } + }, + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_vol2.json", + "type": "Collection", + "label": { "en": ["Berliner Tageblatt - 1926"] } + } + ] +} diff --git a/source/presentation/4.0/example/uc03_vol1.json b/source/presentation/4.0/example/uc03_vol1.json new file mode 100644 index 000000000..eabf3b50e --- /dev/null +++ b/source/presentation/4.0/example/uc03_vol1.json @@ -0,0 +1,35 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "type": "Collection", + "id": "https://iiif.io/api/presentation/4.0/example/uc03_vol1.json", + "label": { + "en": [ + "Berliner Tageblatt - 1925" + ] + }, + "rights": "http://creativecommons.org/publicdomain/mark/1.0/", + "behavior": ["multi-part"], + "requiredStatement": { + "label": { "en": [ "Attribution" ] }, + "value": { "en": [ + "

Berliner Tageblatt - Staatsbibliothek zu Berlin - Preußischer Kulturbesitz. Public Domain Mark - http://creativecommons.org/publicdomain/mark/1.0/

" + ] } + }, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest", + "label": { "de": [ "Berliner Tageblatt - 1925-02-16" ] + } + }, + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue2.json", + "type": "Manifest", + "label": { + "de": [ + "Berliner Tageblatt - 1925-03-13" + ] + } + } + ] +} \ No newline at end of file diff --git a/source/presentation/4.0/example/uc03_vol2.json b/source/presentation/4.0/example/uc03_vol2.json new file mode 100644 index 000000000..3ee646230 --- /dev/null +++ b/source/presentation/4.0/example/uc03_vol2.json @@ -0,0 +1,14 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "type": "Collection", + "id": "https://iiif.io/api/presentation/4.0/example/uc03_vol2.json", + "label": { + "en": [ + "Berliner Tageblatt - 1926 - note there are no issues in this example" + ] + }, + "rights": "http://creativecommons.org/publicdomain/mark/1.0/", + "behavior": ["multi-part"], + "items": [ + ] +} \ No newline at end of file diff --git a/source/presentation/4.0/index.md b/source/presentation/4.0/index.md index 2650a4543..04f2acfa0 100644 --- a/source/presentation/4.0/index.md +++ b/source/presentation/4.0/index.md @@ -215,37 +215,7 @@ A Container that represents a bounded, two-dimensional space, optionally with a Canvases have two additional required properties: [`height`][prezi-40-model-height] and [`width`][prezi-40-model-width], which give the spatial extent as integers. Canvases may also have the [`duration`][prezi-40-model-duration] property in the same manner as Timelines. -```json -{ - "id": "https://example.org/iiif/presentation/examples/manifest-with-containers/canvas", - "type": "Canvas", - "width": 12000, - "height": 9000, - "items": [ - { - "id": "https://example.org/iiif/presentation/examples/manifest-with-containers/page/p2", - "type": "AnnotationPage", - "items": [ - { - "id": "https://example.org/iiif/presentation/examples/manifest-with-containers/annotation/c1", - "type": "Annotation", - "motivation": ["painting"], - "body": [ - { - "id": "https://iiif.io/api/presentation/example-content-resources/image/painting.jpg", - "type": "Image", - "format": "image/jpeg", - "width": 4000, - "height": 3000 - } - ], - "target": ["https://example.org/iiif/presentation/examples/manifest-with-containers/canvas"] - } - ] - } - ] -} -``` +{% include code_example.html src="03_canvas.json" from=11 to=39 %} ### Scene @@ -253,7 +223,7 @@ A Container that represents a boundless three-dimensional space, optionally with Scenes may also have the [`duration`][prezi-40-model-duration] property in the same manner as Timelines. -{% include code_example.html src="03_scene.json" from=16 to=49 %} +{% include code_example.html src="04_scene.json" from=16 to=49 %} Scenes can have time-based and image content in them as well as 3D content. See model for how to do this. @@ -296,23 +266,9 @@ Parts of resources on the Web can be identified using URIs with a fragment compo There are different types of fragment based on the format of the resource. The most commonly used type in IIIF is the W3C's Media Fragments specification, as it can define a temporal and 2D spatial region. -```json -{ - "id": "https://example.org/iiif/presentation/examples/manifest-with-containers/comments/c1", - "type": "Annotation", - "motivation": ["commenting"], - "body": [ - { - "id": "https://example.org/iiif/presentation/examples/manifest-with-containers/bodies/koto-body", - "type": "TextualBody", - "value": "Koto with a cover being carried", - "language": "en", - "format": "text/plain" - } - ], - "target": ["https://example.org/iiif/presentation/examples/manifest-with-containers/canvas#xywh=6050,3220,925,1250"] -} -``` + +{% include code_example.html src="05_fragment.json" from=58 to=72 %} + Here the Canvas [`id`][prezi-40-model-id] from the earlier example is still the [`target`][prezi-40-model-target] of an Annotation, but it has been qualified to a specific region of that Canvas by a URI fragment `#xywh=6050,3220,925,1250`. Note that the x, y, w, and h are in the Canvas coordinate space, not the image pixel dimensions space. This annotation has no knowledge of or dependency on the particular image we painted onto the Canvas; we could replace that image with one of a different, higher resolution without affecting this annotation or the region of the Canvas it targets. @@ -327,37 +283,7 @@ The required properties of Specific Resources are [`id`][prezi-40-model-id], [`t The fragment example above can be expressed using a Specific Resource: -```json -{ - "id": "https://example.org/iiif/presentation/examples/manifest-with-containers/comments/c1", - "type": "Annotation", - "motivation": ["commenting"], - "body": [ - { - "id": "https://example.org/iiif/presentation/examples/manifest-with-containers/bodies/koto-body", - "type": "TextualBody", - "value": "Koto with a cover being carried", - "language": "en", - "format": "text/plain" - } - ], - "target": [ - { - "id": "https://example.org/iiif/presentation/examples/manifest-with-containers/resources/koto-sr", - "type": "SpecificResource", - "source": { - "id": "https://example.org/iiif/presentation/examples/manifest-with-containers/canvas", - "type": "Canvas" - }, - "selector": { - "id": "https://example.org/iiif/presentation/examples/manifest-with-containers/selectors/koto-selector", - "type": "FragmentSelector", - "value": "xywh=6050,3220,925,1250" - } - } - ] -} -``` +{% include code_example.html src="06_specific_resource.json" from=58 to=86 %} ## Navigational Resources @@ -369,30 +295,7 @@ IIIF Collections are ordered lists of Manifests and Collections. Collections all Collections may include both other Collections and Manifests, forming a tree-structured hierarchy that expresses relationships among IIIF resources. This organization can represent archival or curatorial structures, logical groupings such as volumes or series, or dynamically generated sets of related items. As such, they enable clients to load predefined sets of resources at initialization, render dynamically generated sets such as search results, visualize lists or hierarchies of related content, and facilitate navigation through structured aggregations of Manifests and Collections. -```json -{ - "id": "https://iiif.example.org/collection/top", - "type": "Collection", - "label": { "en": ["Top-level Collection"] }, - "items": [ - { - "id": "https://iiif.example.org/collection/sub1", - "type": "Collection", - "label": { "en": ["Sub-Collection 1"] } - }, - { - "id": "https://iiif.example.org/manifest/1", - "type": "Manifest", - "label": { "en": ["Manifest 1"] } - }, - { - "id": "https://iiif.example.org/manifest/2", - "type": "Manifest", - "label": { "en": ["Manifest 2"] } - } - ] -} -``` +{% include code_example.html src="07_collection.json" %} :eyes: @@ -402,153 +305,21 @@ IIIF Ranges are used to represent structure _WITHIN_ a Manifest beyond the defau Ranges may include Containers, parts of Containers via Specific Resources or fragment URIs, or other Ranges, creating tree-like structures that reflect the logical or intellectual organization of the resource, such as a table of contents or an alternative ordering of items. -```json -{ - "id": "https://iiif.example.org/manifest/1/range/toc", - "type": "Range", - "label": { "en": ["Table of Contents"] }, - "items": [ - { - "id": "https://iiif.example.org/manifest/1/canvas/1", - "type": "Canvas", - "label": { "en": ["Page 1"] } - }, - { - "id": "https://iiif.example.org/manifest/1/canvas/2", - "type": "Canvas", - "label": { "en": ["Page 2"] } - }, - { - "id": "https://iiif.example.org/manifest/1/range/chapter2", - "type": "Range", - "label": { "en": ["Chapter 2"] }, - "items": [ - { - "id": "https://iiif.example.org/manifest/1/canvas/3", - "type": "Canvas", - "label": { "en": ["Page 3"] } - } - ] - } - ] -} -``` +{% include code_example.html src="08_range.json" from=283 to=311 %} :eyes: - - # Image Content ## Use Case 1: Artwork with deep zoom This example is a Manifest with one Canvas, representing an artwork. The content resource, a JPEG image of the artwork, is associated with the Canvas via a Painting Annotation. -The unit integer coordinates of the Canvas (12000 x 9000) are not the same as the pixel dimensions of the JPEG image (4000 x 3000), but they are proportional---the Canvas has a 4:3 landscape aspect ratio, and so does the JPEG image.The [`target`][prezi-40-model-target] property of the Annotation is the Canvas [`id`][prezi-40-model-id], unqualified by any particular region; this is taken to mean the content (the image) should fill the Canvas completely. As the Canvas and the image are the same aspect ratio, no distortion will occur. This approach allows the current image to be replaced by a higher resolution image in future, on the same Canvas. The Canvas dimensions establish a coordinate system for _painting annotations_ and other kinds of annotation that link content with the Canvas; they are not pixels of images. +The unit integer coordinates of the Canvas (6000 x 3813) are not the same as the pixel dimensions of the JPEG image (2000 x 1271), but they are proportional---the Canvas has a 4:3 landscape aspect ratio, and so does the JPEG image.The [`target`][prezi-40-model-target] property of the Annotation is the Canvas [`id`][prezi-40-model-id], unqualified by any particular region; this is taken to mean the content (the image) should fill the Canvas completely. As the Canvas and the image are the same aspect ratio, no distortion will occur. This approach allows the current image to be replaced by a higher resolution image in future, on the same Canvas. The Canvas dimensions establish a coordinate system for _painting annotations_ and other kinds of annotation that link content with the Canvas; they are not pixels of images. The example demonstrates the use of the common descriptive properties [`label`][prezi-40-model-label] for the title of the artwork, [`metadata`][prezi-40-model-metadata] for additional information to display to the user, [`summary`][prezi-40-model-summary] for a brief description of the artwork, [`rights`][prezi-40-model-rights] to assert a rights statement or license from a controlled vocabulary, [`homepage`][prezi-40-model-homepage] to link to the artwork's specific web page, [`thumbnail`][prezi-40-model-thumbnail] to provide a small image to stand for the Manifest, [`provider`][prezi-40-model-provider] to give information about the publisher of the Manifest, and finally, [`service`][prezi-40-model-service] to specify a IIIF Image API service that provides features such as deep zooming, derivative generation, image fragment referencing, rotation, and more. -```jsonc -{ - "@context": "http://iiif.io/api/presentation/4/context.json", - "id": "https://iiif.io/api/cookbook/recipe/0001-mvm-image/manifest.json", - "type": "Manifest", - "label": { "en": ["Use case 1: Artwork"] }, - "metadata": [ - { - "label": { "en": ["Artist"] }, - "value": { "en": ["Anne Artist"] } - }, - { - "label": { "en": ["Date"] }, - "value": { "en": ["c. 1800"] } - } - ], - "summary": { "en": ["A longer piece of text to be shown when the metadata is not."] }, - "rights": "http://rightsstatements.org/vocab/NoC-NC/1.0/", - "homepage": [ - { - "id": "https://example.org/works/artwork37", - "type": "Text", - "format": "text/html", - "label": { "en": ["Homepage for artwork37"] } - } - ], - "thumbnail": [ - { - "id": "https://example.org/works/artwork37/thumbnail.jpg", - "type": "Image", - "format": "image/jpeg", - "width": 100, - "height": 150 - } - ], - "provider": [ - { - "id": "https://example.org/about", - "type": "Agent", - "label": { "en": ["Example Organization"] }, - "homepage": [ - { - "id": "https://example.org/", - "type": "Text", - "label": { "en": ["Example Organization Homepage"] }, - "format": "text/html" - } - ], - "logo": [ - { - "id": "https://example.org/images/logo.png", - "type": "Image", - "format": "image/png", - "height": 100, - "width": 120 - } - ] - } - ], - "items": [ - { - "id": "https://example.org/iiif/presentation/examples/manifest-with-containers/canvas", - "type": "Canvas", - "width": 12000, - "height": 9000, - "items": [ - { - "id": "https://example.org/iiif/presentation/examples/manifest-with-containers/page/p2", - "type": "AnnotationPage", - "items": [ - { - "id": "https://example.org/iiif/presentation/examples/manifest-with-containers/annotation/c1", - "type": "Annotation", - "motivation": ["painting"], - "body": [ - { - "id": "https://iiif.io/api/presentation/example/image/painting/full/max/0/default.jpg", - "type": "Image", - "format": "image/jpeg", - "width": 4000, - "height": 3000, - "service": [ - { - "id": "https://iiif.io/api/presentation/example/image/painting", - "profile": "level1", - "type": "ImageService3" - // etc - } - ] - } - ], - "target": ["https://example.org/iiif/presentation/examples/manifest-with-containers/canvas"] - } - ] - } - ] - } - ] -} -``` - +{% include code_example.html src="uc01_artwork.json" %} > **Key Points** @@ -574,125 +345,7 @@ Properties: [id][prezi-40-model-id], [type][prezi-40-model-type], [label][prezi- This example is a Manifest with multiple Canvases, each of which represents a page of a book. It demonstrates the use of the [`behavior`][prezi-40-model-behavior] property to indicate to a client that the object is _paged_---this helps a client generate the correct user experience. The [`viewingDirection`][prezi-40-model-viewingDirection] property indicates that the book is read left-to-right. In this case, the property is redundant as `left-to-right` is the default value. The Manifest has a [`rendering`][prezi-40-model-rendering] property linking to a PDF representation; typically a client would offer this as a download or "view as" option. The [`start`][prezi-40-model-start] property is used to tell a client to initialize the view on a particular Canvas, useful if the digitized work contains a large amount of irrelevant front matter or blank pages. The [`requiredStatement`][prezi-40-model-requiredStatement] is a message that a client MUST show to the user when presenting the Manifest. -```json -{ - "@context": "http://iiif.io/api/presentation/4/context.json", - "id": "https://example.org/iiif/presentation/examples/manifest-with-book.json", - "type": "Manifest", - "label": { "en": ["Use case 2: Book"] }, - "behavior": ["paged"], - "viewingDirection": "left-to-right", - "rendering": [ - { - "id": "https://example.org/pdfs/book.pdf", - "type": "Text", - "label": { "en": ["PDF version"] }, - "format": "application/pdf" - } - ], - "start": { - "id": "https://example.org/iiif/presentation/examples/manifest-with-book/canvas/c2", - "type": "Canvas" - }, - "requiredStatement": { - "label": { "en": ["Attribution"] }, - "value": { "en": ["Provided courtesy of Example Institution"] } - }, - "items": [ - { - "id": "https://example.org/iiif/presentation/examples/manifest-with-book/canvas/c1", - "type": "Canvas", - "label": { "en": ["Blank page"] }, - "height": 4613, - "width": 3204, - "items": [ - { - "id": "https://example.org/iiif/presentation/examples/manifest-with-book/page/p1", - "type": "AnnotationPage", - "items": [ - { - "id": "https://example.org/iiif/presentation/examples/manifest-with-book/annotation/a1", - "type": "Annotation", - "motivation": ["painting"], - "body": [ - { - "id": "https://iiif.io/api/presentation/example-content-resources/image/page1.jpg", - "type": "Image", - "format": "image/jpeg", - "height": 4613, - "width": 3204 - } - ], - "target": ["https://example.org/iiif/presentation/examples/manifest-with-book/canvas/c1"] - } - ] - } - ] - }, - { - "id": "https://example.org/iiif/presentation/examples/manifest-with-book/canvas/c2", - "type": "Canvas", - "label": { "en": ["Frontispiece"] }, - "height": 4613, - "width": 3204, - "items": [ - { - "id": "https://example.org/iiif/presentation/examples/manifest-with-book/page/p2", - "type": "AnnotationPage", - "items": [ - { - "id": "https://example.org/iiif/presentation/examples/manifest-with-book/annotation/a2", - "type": "Annotation", - "motivation": ["painting"], - "body": [ - { - "id": "https://iiif.io/api/presentation/example-content-resources/image/page2.jpg", - "type": "Image", - "format": "image/jpeg", - "height": 4613, - "width": 3204 - } - ], - "target": ["https://example.org/iiif/presentation/examples/manifest-with-book/canvas/c2"] - } - ] - } - ] - }, - { - "id": "https://example.org/iiif/presentation/examples/manifest-with-book/canvas/c3", - "type": "Canvas", - "label": { "en": ["Title Page"] }, - "height": 4613, - "width": 3204, - "items": [ - { - "id": "https://example.org/iiif/presentation/examples/manifest-with-book/page/p3", - "type": "AnnotationPage", - "items": [ - { - "id": "https://example.org/iiif/presentation/examples/manifest-with-book/annotation/a3", - "type": "Annotation", - "motivation": ["painting"], - "body": [ - { - "id": "https://iiif.io/api/presentation/example-content-resources/image/page3.jpg", - "type": "Image", - "format": "image/jpeg", - "height": 4613, - "width": 3204 - } - ], - "target": ["https://example.org/iiif/presentation/examples/manifest-with-book/canvas/c3"] - } - ] - } - ] - } - // Additional Canvases - ] -} -``` +{% include code_example.html src="uc02_book.json" %} > **Key Points** @@ -710,170 +363,21 @@ Properties: [behavior][prezi-40-model-behavior], [viewingDirection][prezi-40-mod ## Use Case 3: Periodical -This example demonstrates the use of IIIF Collections to group Manifests into a hierarchy. In this case, there is a Collection for a run of the _The Tombstone Epitaph_, published from 1880 to 1920. This contains 41 child Collections each representing a year's worth of issues. The parent Collection and each of its child Collections use the [`behavior`][prezi-40-model-behavior] "multi-part" to signal that the Collections and their Manifests are part of a logical set. Each of the year Collections has one Manifest for each issue of the newspaper. +This example demonstrates the use of IIIF Collections to group Manifests into a hierarchy. In this case, there is a Collection for a run of the _Berliner Tageblatt_, published from 1925 to 1926. This contains 2 child Collections each representing a year's worth of issues. The parent Collection and each of its child Collections use the [`behavior`][prezi-40-model-behavior] "multi-part" to signal that the Collections and their Manifests are part of a logical set. Each of the year Collections has one Manifest for each issue of the newspaper. -The top-level Collection has a [`navPlace`][prezi-40-model-navPlace] property that could be used on a "Newspapers of America" map to allow users to view newspapers by location. Each Manifest has a [`navDate`][prezi-40-model-navDate] property that could be used to plot the issues on a timeline or calendar-style user interface. Within each Manifest, the [`structures`][prezi-40-model-structures] property provides Ranges which are used to identify individual sections of the Newspaper, and individual stories within those sections, which may be spread across multiple columns and pages. Each story's Range includes the [`supplementary`][prezi-40-model-supplementary] property to link to an Annotation Collection that provides the text of the story. +The top-level Collection has a [`navPlace`][prezi-40-model-navPlace] property that could be used on a "Newspapers of Germany" map to allow users to view newspapers by location. Each Manifest has a [`navDate`][prezi-40-model-navDate] property that could be used to plot the issues on a timeline or calendar-style user interface. Within each Manifest, the [`structures`][prezi-40-model-structures] property provides Ranges which are used to identify individual sections of the Newspaper, and individual stories within those sections, which may be spread across multiple columns and pages. Each story's Range includes the [`supplementary`][prezi-40-model-supplementary] property to link to an Annotation Collection that provides the text of the story. IIIF Collection with [`behavior`][prezi-40-model-behavior] "multi-part" that contains the individual "multi-part" Collections for each year/volume: -```json -{ - "@context": "http://iiif.io/api/presentation/4/context.json", - "id": "https://example.org/iiif/periodical/collection.json", - "type": "Collection", - "label": { "en": ["The Tombstone Epitaph (1880-1920)"] }, - "behavior": ["multi-part"], - "navPlace": { - "id": "https://example.org/iiif/periodical/collection/place/1", - "type": "FeatureCollection", - "features": [ - { - "id": "https://example.org/iiif/periodical/collection/feature/1", - "type": "Feature", - "properties": { "label": { "en": ["Tombstone, Cochise County, Arizona"] } }, - "geometry": { - "type": "Point", - "coordinates": [31.715940, −110.064827] - } - } - ] - }, - "items": [ - { - "id": "https://example.org/iiif/periodical/multi-part-collection/v1.json", - "type": "Collection", - "label": { "en": ["The Tombstone Epitaph, 1880"] } - }, - { - "id": "https://example.org/iiif/periodical/multi-part-collection/v2.json", - "type": "Collection", - "label": { "en": ["The Tombstone Epitaph, 1881"] } - } - // Additional multi-part collections for each year/volume - ] -} -``` -IIIF Collection with [`behavior`][prezi-40-model-behavior] "multi-part" for the second volume (1881), with individual Manifests for each issue: +{% include code_example.html src="uc03_periodical.json" %} -```json -{ - "@context": "http://iiif.io/api/presentation/4/context.json", - "id": "https://example.org/iiif/periodical/multi-part-collection/v1.json", - "type": "Collection", - "label": { "en": ["The Tombstone Epitaph, 1881"] }, - "behavior": ["multi-part"], - "items": [ - // Previous issues - { - "id": "https://example.org/iiif/periodical/multi-part-collection/issue1.json", - "type": "Manifest", - "label": { "en": ["October 27, 1881"] } - } - // Subsequent issues - ] -} -``` +IIIF Collection with [`behavior`][prezi-40-model-behavior] "multi-part" for the first volume (1925), with individual Manifests for each issue: -Manifest for the October 27, 1881 issue, with Ranges for table of contents: +{% include code_example.html src="uc03_vol1.json" from=1 to=24%} -```json -{ - "@context": "http://iiif.io/api/presentation/4/context.json", - "id": "https://example.org/iiif/periodical/multi-part-collection/issue1.json", - "type": "Manifest", - "label": { "en": ["The Tombstone Epitaph, October 27, 1881"] }, - "behavior": ["paged"], - "navDate": "1881-10-27T00:00:00+00:00", - "items": [ - { - "id": "https://example.org/iiif/periodical/multi-part-collection/canvas/c1", - "type": "Canvas", - "label": { "en": ["Page 1"] }, - "height": 4613, - "width": 3204, - "items": [ - { - "id": "https://example.org/iiif/periodical/multi-part-collection/page/p1", - "type": "AnnotationPage", - "items": [ - { - "id": "https://example.org/iiif/periodical/multi-part-collection/annotation/a1", - "type": "Annotation", - "motivation": ["painting"], - "body": [ - { - "id": "https://example.org/image/page1.jpg", - "type": "Image", - "format": "image/jpeg", - "height": 4613, - "width": 3204 - } - ], - "target": ["https://example.org/iiif/periodical/multi-part-collection/canvas/c1"] - } - ] - } - ] - }, - { - "id": "https://example.org/iiif/periodical/multi-part-collection/canvas/c2", - "type": "Canvas", - "label": { "en": ["Page 2"] }, - "height": 4613, - "width": 3204, - "items": [ - { - "id": "https://example.org/iiif/periodical/multi-part-collection/page/p2", - "type": "AnnotationPage", - "items": [ - { - "id": "https://example.org/iiif/periodical/multi-part-collection/annotation/a2", - "type": "Annotation", - "motivation": ["painting"], - "body": [ - { - "id": "https://example.org/image/page2.jpg", - "type": "Image", - "format": "image/jpeg", - "height": 4613, - "width": 3204 - } - ], - "target": ["https://example.org/iiif/periodical/multi-part-collection/canvas/c2"] - } - ] - } - ] - } - // Additional Canvases - ], - "structures": [ - { - "id": "https://example.org/iiif/periodical/multi-part-collection/range/r0", - "type": "Range", - "label": { "en": ["October 27, 1881"] }, - "items": [ - { - "id": "https://example.org/iiif/periodical/multi-part-collection/range/r1", - "type": "Range", - "label": { "en": ["Yesterday's Tragedy: Three Men Hurled Into Eternity In the Duration of a Moment"] }, - "supplementary": { - "id": "https://example.org/iiif/full-text-anno-collection", - "type": "AnnotationCollection" - }, - "items": [ - { - "id": "https://example.org/iiif/periodical/multi-part-collection/canvas/c1", - "type": "Canvas" - } - // Additional contents - ] - } - ] - } - ] -} -``` +Manifest for the February 16, 1925 issue, with Ranges for table of contents: + +{% include code_example.html src="uc03_issue1.json" %} > **Key Points** From 841dc6f8ae215dc134f582e6081796bc22127e6e Mon Sep 17 00:00:00 2001 From: Glen Robson Date: Wed, 4 Feb 2026 15:53:52 +0000 Subject: [PATCH 03/19] Allowing you to print the whole file --- source/_plugins/include_lines.rb | 38 +++++++++++++++++++++++--------- 1 file changed, 27 insertions(+), 11 deletions(-) diff --git a/source/_plugins/include_lines.rb b/source/_plugins/include_lines.rb index be8a2616f..24f389aa4 100644 --- a/source/_plugins/include_lines.rb +++ b/source/_plugins/include_lines.rb @@ -29,16 +29,12 @@ def render(context) end indent = integer_option(options, 'indent') - unless from && to - raise ArgumentError, "include_lines: must specify from/to (1-indexed), e.g. {% include_lines path from:11 to:35 %}" - end - - if from < 1 || to < 1 - raise ArgumentError, "include_lines: from/to must be >= 1 (got from:#{from} to:#{to})" - end + no_range_given = from.nil? && to.nil? - if to < from - raise ArgumentError, "include_lines: to must be >= from (got from:#{from} to:#{to})" + # If no from/to (or start/end aliases) are given, include the whole file. + # If only one of from/to is given, keep raising (ambiguous). + if !no_range_given && !(from && to) + raise ArgumentError, "include_lines: must specify from/to (1-indexed), e.g. {% include_lines path from:11 to:35 %}" end absolute_path = File.expand_path(path, source) @@ -53,6 +49,19 @@ def render(context) lines = File.read(absolute_path, encoding: 'UTF-8').split("\n", -1) max_line = lines.length + if no_range_given + from = 1 + to = max_line + end + + if from < 1 || to < 1 + raise ArgumentError, "include_lines: from/to must be >= 1 (got from:#{from} to:#{to})" + end + + if to < from + raise ArgumentError, "include_lines: to must be >= from (got from:#{from} to:#{to})" + end + if from > max_line raise ArgumentError, "include_lines: from (#{from}) is beyond end of file (#{max_line} lines): #{path}" end @@ -108,9 +117,16 @@ def unquote(value) def integer_option(options, key) return nil unless options.key?(key) - Integer(options[key]) + + raw = options[key] + return nil if raw.nil? + + s = raw.to_s.strip + return nil if s.empty? + + Integer(s, 10) rescue ArgumentError - raise ArgumentError, "include_lines: #{key} must be an integer (got #{options[key].inspect})" + raise ArgumentError, "include_lines: #{key} must be an integer (got #{raw.inspect})" end def boolean_option(options, key) From 6950161ee68ced67ff3902e08b38d7aff2455396 Mon Sep 17 00:00:00 2001 From: Glen Robson Date: Wed, 11 Feb 2026 01:05:54 +0000 Subject: [PATCH 04/19] Adding use case 4 --- .../4.0/example/uc04_annotations.json | 26 ++++ .../presentation/4.0/example/uc04_audio.json | 113 +++++++++++++++ source/presentation/4.0/index.md | 134 +----------------- 3 files changed, 141 insertions(+), 132 deletions(-) create mode 100644 source/presentation/4.0/example/uc04_annotations.json create mode 100644 source/presentation/4.0/example/uc04_audio.json diff --git a/source/presentation/4.0/example/uc04_annotations.json b/source/presentation/4.0/example/uc04_annotations.json new file mode 100644 index 000000000..2a1e2ea01 --- /dev/null +++ b/source/presentation/4.0/example/uc04_annotations.json @@ -0,0 +1,26 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/presentation/4.0/example/uc04_annotations.json", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc04_annotations/a1", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc04_annotations/text/1", + "type": "TextualBody", + "language": "de", + "format": "text/plain", + "value": "Hast du etwas Zeit für mich?" + } + ], + "target": [ + "https://iiif.io/api/presentation/4.0/example/uc04_audio/track/tr1#t=8,10" + ] + } + ] +} \ No newline at end of file diff --git a/source/presentation/4.0/example/uc04_audio.json b/source/presentation/4.0/example/uc04_audio.json new file mode 100644 index 000000000..98afcab39 --- /dev/null +++ b/source/presentation/4.0/example/uc04_audio.json @@ -0,0 +1,113 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/presentation/4.0/example/uc04_audio.json", + "type": "Manifest", + "label": { "en": [ "Use case 3: 45 single with 2 tracks" ] }, + "behavior": [ "auto-advance" ], + "accompanyingContainer": { + "id": "https://iiif.io/api/presentation/4.0/example/uc04_audio/accompany/c1", + "type": "Canvas", + "label": { "en": [ "Photo of cover sleeve" ] }, + "height": 1024, + "width": 1024, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc04_audio/accompany/c1/page", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc04_audio/accompany/c1/image", + "type": "Annotation", + "motivation": [ "painting" ], + "body": [ + { + "id": "https://fixtures.iiif.io/audio/mock/99_luftbaloons/mock_cover_image.png", + "type": "Image", + "format": "image/png", + "height": 1024, + "width": 1024 + } + ], + "target": [ + "https://iiif.io/api/presentation/4.0/example/uc04_audio/accompany/ac1" + ] + } + ] + } + ] + }, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc04_audio/timeline/t1", + "type": "Timeline", + "label": { + "en": [ + "Side A: 99 Luftballons" + ] + }, + "duration": 98.25, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc04_audio/track/tr1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc04_audio/annotation/a1", + "type": "Annotation", + "motivation": [ "painting" ], + "body": [ + { + "id": "https://fixtures.iiif.io/audio/mock/99_luftbaloons/99_luftballons.mp4", + "type": "Audio", + "duration": 98.25, + "format": "audio/mp4", + "language": [ "de" ] + } + ], + "target": [ + "https://iiif.io/api/presentation/4.0/example/uc04_audio/timeline/t1" + ] + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/presentation/4.0/example/uc04_audio/timeline/t2", + "type": "Timeline", + "label": { "en": [ "Side B: 99 Red Balloons" ] }, + "duration": 58.312, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc04_audio/track/tr2", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc04_audio/annotation/a2", + "type": "Annotation", + "motivation": [ "painting" ], + "body": [ + { + "id": "https://fixtures.iiif.io/audio/mock/99_luftbaloons/99_red_balloons.mp4", + "type": "Audio", + "duration": 58.312, + "format": "audio/mp4", + "language": [ "en" ] + } + ], + "target": [ + "https://iiif.io/api/presentation/4.0/example/uc04_audio/timeline/t2" + ] + } + ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc04_annotations.json", + "type": "AnnotationPage" + } + ] +} \ No newline at end of file diff --git a/source/presentation/4.0/index.md b/source/presentation/4.0/index.md index 04f2acfa0..1618b28dc 100644 --- a/source/presentation/4.0/index.md +++ b/source/presentation/4.0/index.md @@ -400,139 +400,9 @@ sequence This example is a Manifest with two Timelines, each of which represent a temporal extent during which a song is played. As in most cases, the Timeline [`duration`][prezi-40-model-duration] is the same length as that of Content Resource painted into it. This example is a recording digitized from a 45 RPM 7 inch single. It demonstrates the use of [`format`][prezi-40-model-format] for the audio files' content type, [`language`][prezi-40-model-language] (One song is in English and one is in German), [`behavior`][prezi-40-model-behavior] with value "auto-advance" that tells a client to automatically advance to the second Timeline after playing the first, [`annotations`][prezi-40-model-annotations] that link to Annotation Pages of annotations with the motivation `supplementing` that provide the lyrics (one example is given afterwards) - and an [`accompanyingContainer`][prezi-40-model-accompanyingContainer] that carries a picture of the single's cover that is shown while the songs are playing. +{% include code_example.html src="uc04_audio.json" %} -```json -{ - "@context": "http://iiif.io/api/presentation/4/context.json", - "id": "https://example.org/iiif/presentation/examples/manifest-with-audio.json", - "type": "Manifest", - "label": { "en": ["Use case 3: 45 single with 2 tracks"] }, - "behavior": ["auto-advance"], - "accompanyingContainer": { - "id": "https://example.org/iiif/presentation/examples/manifest-with-audio/accompany/c1", - "type": "Canvas", - "label": { "en": ["Photo of cover sleeve"] }, - "height": 900, - "width": 900, - "items": [ - { - "id": "https://example.org/iiif/presentation/examples/manifest-with-audio/accompany/c1/page", - "type": "AnnotationPage", - "items": [ - { - "id": "https://example.org/iiif/presentation/examples/manifest-with-audio/accompany/c1/image", - "type": "Annotation", - "motivation": ["painting"], - "body": [ - { - "id": "https://example.org/presentation/example-content-resources/image/cover.jpg", - "type": "Image", - "format": "image/jpeg", - "height": 900, - "width": 900 - } - ], - "target": ["https://example.org/iiif/presentation/examples/manifest-with-audio/accompany/ac1"] - } - ] - } - ] - }, - "items": [ - { - "id": "https://example.org/iiif/presentation/examples/manifest-with-audio/timeline/t1", - "type": "Timeline", - "label": { "en": ["Side A: 99 Luftballons"] }, - "duration": 231, - "items": [ - { - "id": "https://example.org/iiif/presentation/examples/manifest-with-audio/track/tr1", - "type": "AnnotationPage", - "items": [ - { - "id": "https://example.org/iiif/presentation/examples/manifest-with-audio/annotation/a1", - "type": "Annotation", - "motivation": ["painting"], - "body": [ - { - "id": "https://example.org/presentation/example-content-resources/audio/track1.mp4", - "type": "Sound", - "format": "audio/mp4", - "duration": 231, - "language": ["de"] - } - ], - "target": ["https://example.org/iiif/presentation/examples/manifest-with-audio/timeline/t1"] - } - ] - } - ] - }, - { - "id": "https://example.org/iiif/presentation/examples/manifest-with-audio/timeline/t2", - "type": "Timeline", - "label": { "en": ["Side B: 99 Red Balloons"] }, - "duration": 230.5, - "items": [ - { - "id": "https://example.org/iiif/presentation/examples/manifest-with-audio/track/tr2", - "type": "AnnotationPage", - "items": [ - { - "id": "https://example.org/iiif/presentation/examples/manifest-with-audio/annotation/a2", - "type": "Annotation", - "motivation": ["painting"], - "body": [ - { - "id": "https://example.org/presentation/example-content-resources/audio/track2.mp4", - "type": "Sound", - "format": "audio/mp4", - "duration": 230.5, - "language": ["en"] - } - ], - "target": ["https://example.org/iiif/presentation/examples/manifest-with-audio/timeline/t2"] - } - ] - } - ] - } - ], - "annotations": [ - { - "id": "https://example.org/iiif/presentation/examples/external-anno.json", - "type": "AnnotationPage" - } - ] -} -``` - - -```json -{ - "@context": "http://iiif.io/api/presentation/3/context.json", - "id": "https://example.org/iiif/presentation/examples/external-anno.json", - "type": "AnnotationPage", - "items": [ - { - "id": "https://example.org/iiif/presentation/examples/external-anno/a1", - "type": "Annotation", - "motivation": ["supplementing"], - "body": [ - { - "id": "https://example.org/presentation/example-content-resources/lyrics1.txt", - "type": "TextualBody", - "language": "de", - "format": "text/plain", - "value": "Hast du etwas Zeit für mich?" - } - ], - "target": ["https://example.org/iiif/presentation/examples/manifest-with-audio/timeline/t1#t=3.5,6.8"] - } - ] - // (annotations for the rest of the song lines) -} -``` +{% include code_example.html src="uc04_annotations.json" %} > **Key Points** From c864265b4cf760ecf231e38d8e279a6eee29b3b6 Mon Sep 17 00:00:00 2001 From: Glen Robson Date: Wed, 11 Feb 2026 13:53:03 +0000 Subject: [PATCH 05/19] Adding Use Case 5 --- .../presentation/4.0/example/uc05_movie.json | 110 +++++++++++++++++ source/presentation/4.0/index.md | 115 +----------------- 2 files changed, 111 insertions(+), 114 deletions(-) create mode 100644 source/presentation/4.0/example/uc05_movie.json diff --git a/source/presentation/4.0/example/uc05_movie.json b/source/presentation/4.0/example/uc05_movie.json new file mode 100644 index 000000000..556a44cf7 --- /dev/null +++ b/source/presentation/4.0/example/uc05_movie.json @@ -0,0 +1,110 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/presentation/4.0/example/uc05_movie.json", + "type": "Manifest", + "label": { "en": [ "Use Case 4: Movie with Subtitles" ] }, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc05/canvas", + "type": "Canvas", + "height": 360, + "width": 480, + "duration": 572.034, + "timeMode": "trim", + "placeholderContainer": { + "id": "https://iiif.io/api/presentation/4.0/example/uc05/placeholder", + "type": "Canvas", + "height": 728, + "width": 962, + "items": [ + { + "id": "https://example.org/image/placeholder/annopage", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc05/placeholder/image", + "type": "Annotation", + "motivation": ["painting"], + "body": [ + { + "id": "https://fixtures.iiif.io/video/indiana/lunchroom_manners/thumbnail.png", + "type": "Image", + "format": "image/png", + "height": 728, + "width": 962 + } + ], + "target": [ "https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder" ] + } + ] + } + ] + }, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc05/annopage1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc05/anno1", + "type": "Annotation", + "motivation": ["painting"], + "body": [ + { + "type": "Choice", + "items": [ + { + "id": "https://fixtures.iiif.io/video/indiana/lunchroom_manners/low/lunchroom_manners_256kb.mp4", + "type": "Video", + "label": { "en": [ "Low resolution (75 MB)" ] }, + "height": 360, + "width": 480, + "duration": 572.034, + "format": "video/mp4", + "fileSize": 78666676 + }, + { + "id": "https://fixtures.iiif.io/video/indiana/lunchroom_manners/high/lunchroom_manners_1024kb.mp4", + "type": "Video", + "label": { "en": [ "High resolution (75 MB)" ] }, + "height": 360, + "width": 480, + "duration": 572.034, + "format": "video/mp4", + "fileSize": 78666676 + } + ] + } + ], + "target": [ "https://iiif.io/api/presentation/4.0/example/uc05/canvas" ] + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc05/subtitles", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc05/subtitles/anno", + "type": "Annotation", + "motivation": ["supplementing"], + "provides": [ "subtitles" ], + "body": [ + { + "id": "https://fixtures.iiif.io/video/indiana/lunchroom_manners/lunchroom_manners.vtt", + "type": "Text", + "format": "text/vtt", + "label": { "en": [ "Subtitles in WebVTT format" ] }, + "language": ["en"] + } + ], + "target": [ "https://iiif.io/api/presentation/4.0/example/uc05/canvas" ] + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/source/presentation/4.0/index.md b/source/presentation/4.0/index.md index 1618b28dc..69d549b8d 100644 --- a/source/presentation/4.0/index.md +++ b/source/presentation/4.0/index.md @@ -421,120 +421,7 @@ Properties: [duration][prezi-40-model-duration], [format][prezi-40-model-format] This example is a Manifest with one Canvas that represents the temporal extent of the movie (the Canvas [`duration`][prezi-40-model-duration]) and its aspect ratio (given by the [`width`][prezi-40-model-width] and [`height`][prezi-40-model-height] of the Canvas). The example demonstrates the use of a [`Choice`][prezi-40-model-Choice] annotation body to give two alternative versions of the movie, indicated by their [`label`][prezi-40-model-label] and `fileSize` properties as well as [`height`][prezi-40-model-height] and [`width`][prezi-40-model-width]. Subtitles are provided by an annotation that links to a VTT file. The motivation of this annotation is `supplementing` and the [`provides`][prezi-40-model-provides] property of this annotation indicates what accessibility feature it provides, in this case the term `subtitles`. The [`timeMode`][prezi-40-model-timeMode] property in this case is redundant as `trim` is the default value. The Canvas has a [`placeholderContainer`][prezi-40-model-placeholderContainer] that provides a poster image to show in place of the video file before the user initiates playback. -```json -{ - "@context": "http://iiif.io/api/presentation/4/context.json", - "id": "https://example.org/iiif/presentation/examples/manifest-with-movie.json", - "type": "Manifest", - "label": { "en": ["Use Case 4: Movie with Subtitles"] }, - "items": [ - { - "id": "https://example.org/iiif/presentation/examples/manifest-with-movie/canvas", - "type": "Canvas", - "height": 1080, - "width": 1440, - "duration": 3600, - "timeMode": "trim", - "placeholderContainer": { - "id": "https://example.org/iiif/presentation/examples/manifest-with-movie/placeholder", - "type": "Canvas", - "height": 320, - "width": 400, - "items": [ - { - "id": "https://example.org/image/placeholder/annopage", - "type": "AnnotationPage", - "items": [ - { - "id": "https://example.org/iiif/presentation/examples/manifest-with-movie/placeholder/image", - "type": "Annotation", - "motivation": "painting", - "body": [ - { - "id": "https://example.org/image/placeholder.png", - "type": "Image", - "format": "image/png", - "height": 320, - "width": 400 - } - ], - "target": ["https://iiif.io/api/cookbook/recipe/0013-placeholderCanvas/canvas/donizetti/placeholder"] - } - ] - } - ] - }, - "items": [ - { - "id": "https://example.org/iiif/presentation/examples/manifest-with-movie/annopage1", - "type": "AnnotationPage", - "items": [ - { - "id": "https://example.org/iiif/presentation/examples/manifest-with-movie/anno1", - "type": "Annotation", - "motivation": "painting", - "body": [ - { - "type": "Choice", - "items": [ - { - "id": "https://example.org/video/movie-low.mp4", - "type": "Video", - "label": { "en": ["Low resolution (360 MB)"] }, - "height": 360, - "width": 480, - "duration": 3600, - "format": "video/mp4", - "fileSize": 360553219 - }, - { - "id": "https://example.org/video/movie-hi.mp4", - "type": "Video", - "label": { "en": ["High resolution (1.3 GB)"] }, - "height": 1080, - "width": 1440, - "duration": 3600, - "format": "video/mp4", - "fileSize": 1345876231 - } - ] - } - ], - "target": ["https://example.org/iiif/presentation/examples/manifest-with-movie/canvas"] - } - ] - } - ], - "annotations": [ - { - "id": "https://example.org/iiif/presentation/examples/manifest-with-movie/subtitles", - "type": "AnnotationPage", - "items": [ - { - "id": "https://example.org/iiif/presentation/examples/manifest-with-movie/subtitles/anno", - "type": "Annotation", - "motivation": "supplementing", - "provides": [ "subtitles" ], - "body": [{ - "id": "https://example.org/text/subtitles.vtt", - "type": "Text", - "format": "text/vtt", - "label": { - "en": [ - "Subtitles in WebVTT format" - ] - }, - "language": "en" - }], - "target": ["https://example.org/iiif/presentation/examples/manifest-with-movie/canvas"] - } - ] - } - ] - } - ] -} -``` +{% include code_example.html src="uc05_movie.json" %} > **Key Points** From 3c53f1731d53331d8e636a2668ffbd2e0efa1a14 Mon Sep 17 00:00:00 2001 From: Glen Robson Date: Wed, 11 Feb 2026 15:12:46 +0000 Subject: [PATCH 06/19] Adding use case 6 3D --- source/presentation/4.0/example/uv06_3d.json | 43 ++++++++++++++++++++ source/presentation/4.0/index.md | 38 +---------------- 2 files changed, 44 insertions(+), 37 deletions(-) create mode 100644 source/presentation/4.0/example/uv06_3d.json diff --git a/source/presentation/4.0/example/uv06_3d.json b/source/presentation/4.0/example/uv06_3d.json new file mode 100644 index 000000000..59f5210c2 --- /dev/null +++ b/source/presentation/4.0/example/uv06_3d.json @@ -0,0 +1,43 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/presentation/4.0/example/uc06_3d.json", + "type": "Manifest", + "label": { "en": [ "Single Model" ] }, + "summary": { + "en": [ + "Viewer should render the model at the scene origin, and then viewer should add default lighting and camera" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc06/scene/1", + "type": "Scene", + "label": { + "en": [ + "A Scene" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc06/scene/1/page/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc06/3d/anno/1", + "type": "Annotation", + "motivation": [ "painting" ], + "body": [ + { + "id": "https://fixtures.iiif.io/3d/google/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + } + ], + "target": [ "https://iiif.io/api/presentation/4.0/example/uc06/scene/1" ] + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/source/presentation/4.0/index.md b/source/presentation/4.0/index.md index 69d549b8d..d13d003d6 100644 --- a/source/presentation/4.0/index.md +++ b/source/presentation/4.0/index.md @@ -484,43 +484,7 @@ This example is a Manifest with a single Scene, with a single 3D model of a spac > PNG of Scene -```jsonc -{ - "@context": "http://iiif.io/api/presentation/4/context.json", - "id": "https://example.org/iiif/3d/model_origin.json", - "type": "Manifest", - "label": { "en": ["Single Model"] }, - "summary": { "en": ["Viewer should render the model at the scene origin, and then viewer should add default lighting and camera"] }, - "items": [ - { - "id": "https://example.org/iiif/scene1/page/p1/1", - "type": "Scene", - "label": { "en": ["A Scene"] }, - "items": [ - { - "id": "https://example.org/iiif/scene1/page/p1/1", - "type": "AnnotationPage", - "items": [ - { - "id": "https://example.org/iiif/3d/anno1", - "type": "Annotation", - "motivation": ["painting"], - "body": [ - { - "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", - "type": "Model", - "format": "model/gltf-binary" - } - ], - "target": ["https://example.org/iiif/scene1/page/p1/1"] - } - ] - } - ] - } - ] -} -``` +{% include code_example.html src="uv06_3d.json" %} > **Key Points** From edc523dcb21b4b4b75786a04e059988d5b29c5e6 Mon Sep 17 00:00:00 2001 From: Glen Robson Date: Sat, 21 Feb 2026 23:53:50 +0000 Subject: [PATCH 07/19] Adding 3d examples --- .../example/{uv06_3d.json => uc06_3d.json} | 2 +- .../4.0/example/uc06_3d_annotation.json | 120 +++++++++++++++++ source/presentation/4.0/index.md | 126 +----------------- 3 files changed, 123 insertions(+), 125 deletions(-) rename source/presentation/4.0/example/{uv06_3d.json => uc06_3d.json} (96%) create mode 100644 source/presentation/4.0/example/uc06_3d_annotation.json diff --git a/source/presentation/4.0/example/uv06_3d.json b/source/presentation/4.0/example/uc06_3d.json similarity index 96% rename from source/presentation/4.0/example/uv06_3d.json rename to source/presentation/4.0/example/uc06_3d.json index 59f5210c2..6cf6e01d2 100644 --- a/source/presentation/4.0/example/uv06_3d.json +++ b/source/presentation/4.0/example/uc06_3d.json @@ -25,7 +25,7 @@ { "id": "https://iiif.io/api/presentation/4.0/example/uc06/3d/anno/1", "type": "Annotation", - "motivation": [ "painting" ], + "motivation": ["painting"], "body": [ { "id": "https://fixtures.iiif.io/3d/google/astronaut.glb", diff --git a/source/presentation/4.0/example/uc06_3d_annotation.json b/source/presentation/4.0/example/uc06_3d_annotation.json new file mode 100644 index 000000000..963d5c046 --- /dev/null +++ b/source/presentation/4.0/example/uc06_3d_annotation.json @@ -0,0 +1,120 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/presentation/4.0/example/uc06_3d_annotation.json", + "type": "Manifest", + "label": { "en": ["Single Model with light and Camera"] }, + "summary": { "en": ["Viewer should render the model at (-1,0,1), add the light, and base the viewport on the provided camera"] }, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc06/scene/1", + "type": "Scene", + "label": { "en": ["A Scene"] }, + "backgroundColor": "#FF00FE", + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc06/scene/1/page/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc06/scene/1/anno/1", + "type": "Annotation", + "motivation": ["painting"], + "body": [ + { + "id": "https://fixtures.iiif.io/3d/google/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc06/scene/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": -1.0, + "y": 1.0, + "z": 1.0 + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/presentation/4.0/example/uc06/scene/1/anno/2", + "type": "Annotation", + "motivation": ["painting"], + "body": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc06/scene/1/cameras/1", + "type": "PerspectiveCamera", + "label": {"en": ["Perspective Camera 1"]}, + "lookAt": { + "id": "https://iiif.io/api/presentation/4.0/example/uc06/scene/1/anno/1", + "type": "Annotation" + }, + "near": 1, + "far": 100, + "fieldOfView": 50 + } + ], + "target": [ + { + "type": "SpecificResource", + "source": + { + "id": "https://iiif.io/api/presentation/4.0/example/uc06/scene/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0.0, + "y": 6.0, + "z": 10.0 + } + ] + } + ] + }, + { + "id": "https://iiif.io/api/presentation/4.0/example/uc06/scene/1/anno/3", + "type": "Annotation", + "motivation": ["painting"], + "body": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc06/scene/1/lights/1", + "type": "SpotLight", + "label": { "en": ["Spot Light 1"] }, + "angle": 90.0, + "color": "#A0FFA0" + } + ], + "target": [ + { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc06/scene/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 0.0, + "y": 3.0, + "z": 1.0 + } + ] + } + ] + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/source/presentation/4.0/index.md b/source/presentation/4.0/index.md index d13d003d6..dfe9156a8 100644 --- a/source/presentation/4.0/index.md +++ b/source/presentation/4.0/index.md @@ -484,7 +484,7 @@ This example is a Manifest with a single Scene, with a single 3D model of a spac > PNG of Scene -{% include code_example.html src="uv06_3d.json" %} +{% include code_example.html src="uc06_3d.json" %} > **Key Points** @@ -503,129 +503,7 @@ The Light is green and has a position, but has its default orientation of lookin Use case 5a - -```jsonc - { - "@context": "http://iiif.io/api/presentation/4/context.json", - "id": "https://example.org/iiif/3d/model_origin.json", - "type": "Manifest", - "label": { "en": ["Single Model with light and Camera"] }, - "summary": { "en": ["Viewer should render the model at (-1,0,1), add the light, and base the viewport on the provided camera"] }, - "items": [ - { - "id": "https://example.org/iiif/scene1/page/p1/1", - "type": "Scene", - "label": { "en": ["A Scene"] }, - "backgroundColor": "#FF00FE", - "items": [ - { - "id": "https://example.org/iiif/scene1/page/p1/1", - "type": "AnnotationPage", - "items": [ - { - "id": "https://example.org/iiif/3d/anno1", - "type": "Annotation", - "motivation": ["painting"], - "body": [ - { - "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", - "type": "Model", - "format": "model/gltf-binary" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://example.org/iiif/scene1/page/p1/1", - "type": "Scene" - }, - "selector": [ - { - "type": "PointSelector", - "x": -1.0, - "y": 1.0, - "z": 1.0 - } - ] - } - ] - }, - { - "id": "https://example.org/iiif/3d/anno2", - "type": "Annotation", - "motivation": ["painting"], - "body": [ - { - "id": "https://example.org/iiif/3d/cameras/1", - "type": "PerspectiveCamera", - "label": {"en": ["Perspective Camera 1"]}, - "lookAt": { - "id": "https://example.org/iiif/3d/anno1", - "type": "Annotation" - }, - "near": 1, - "far": 100, - "fieldOfView": 50 - } - ], - "target": [ - { - "type": "SpecificResource", - "source": - { - "id": "https://example.org/iiif/scene1/page/p1/1", - "type": "Scene" - }, - "selector": [ - { - "type": "PointSelector", - "x": 0.0, - "y": 6.0, - "z": 10.0 - } - ] - } - ] - }, - { - "id": "https://example.org/iiif/3d/anno2", - "type": "Annotation", - "motivation": ["painting"], - "body": [ - { - "id": "https://example.org/iiif/3d/lights/1", - "type": "SpotLight", - "label": { "en": ["Spot Light 1"] }, - "angle": 90.0, - "color": "#A0FFA0" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://example.org/iiif/scene1/page/p1/1", - "type": "Scene" - }, - "selector": [ - { - "type": "PointSelector", - "x": 0.0, - "y": 3.0, - "z": 1.0 - } - ] - } - ] - } - ] - } - ] - } - ] -} -``` +{% include code_example.html src="uc06_3d_annotation.json" %} > **Key Points** From 7314cfb188da41e1377c1bdcd324da8052abc500 Mon Sep 17 00:00:00 2001 From: Glen Robson Date: Sun, 22 Feb 2026 00:49:00 +0000 Subject: [PATCH 08/19] Changing body + target shape --- .../presentation/4.0/example/02_timeline.json | 21 +- .../presentation/4.0/example/03_canvas.json | 21 +- source/presentation/4.0/example/04_scene.json | 19 +- .../presentation/4.0/example/05_fragment.json | 58 +- .../4.0/example/06_specific_resource.json | 79 +- source/presentation/4.0/example/08_range.json | 222 +- .../4.0/example/uc01_artwork.json | 37 +- .../presentation/4.0/example/uc02_book.json | 4 +- .../4.0/example/uc03_anno_page.json | 15204 +++++++--------- .../presentation/4.0/example/uc03_issue2.json | 18 +- 10 files changed, 7230 insertions(+), 8453 deletions(-) diff --git a/source/presentation/4.0/example/02_timeline.json b/source/presentation/4.0/example/02_timeline.json index 7c2354c7e..1b275d358 100644 --- a/source/presentation/4.0/example/02_timeline.json +++ b/source/presentation/4.0/example/02_timeline.json @@ -21,17 +21,16 @@ "id": "https://iiif.io/api/presentation/4.0/example/02/page/anno", "type": "Annotation", "motivation": ["painting"], - "body": [ - { - "id": "https://fixtures.iiif.io/audio/indiana/mahler-symphony-3/CD1/medium/128Kbps.mp4", - "type": "Sound", - "format": "audio/mp4", - "duration": 1985.024 - } - ], - "target": [ - "https://iiif.io/api/presentation/4.0/example/02" - ] + "body": { + "id": "https://fixtures.iiif.io/audio/indiana/mahler-symphony-3/CD1/medium/128Kbps.mp4", + "type": "Sound", + "format": "audio/mp4", + "duration": 1985.024 + }, + "target": { + "id": "https://iiif.io/api/presentation/4.0/example/02", + "type": "Timeline" + } } ] } diff --git a/source/presentation/4.0/example/03_canvas.json b/source/presentation/4.0/example/03_canvas.json index 3fadf9df5..7ce60657f 100644 --- a/source/presentation/4.0/example/03_canvas.json +++ b/source/presentation/4.0/example/03_canvas.json @@ -22,16 +22,17 @@ "id": "https://iiif.io/api/presentation/4.0/example/03_canvas/annotation/p0001-image", "type": "Annotation", "motivation": [ "painting" ], - "body": [ - { - "id": "http://iiif.io/api/presentation/2.1/example/fixtures/resources/page1-full.png", - "type": "Image", - "format": "image/png", - "height": 1800, - "width": 1200 - } - ], - "target": [ "https://iiif.io/api/presentation/4.0/example/03_canvas/canvas/p1" ] + "body": { + "id": "http://iiif.io/api/presentation/2.1/example/fixtures/resources/page1-full.png", + "type": "Image", + "format": "image/png", + "height": 1800, + "width": 1200 + }, + "target": { + "id": "https://iiif.io/api/presentation/4.0/example/03_canvas/canvas/p1", + "type": "Canvas" + } } ] } diff --git a/source/presentation/4.0/example/04_scene.json b/source/presentation/4.0/example/04_scene.json index d9479d738..1d0f932a2 100644 --- a/source/presentation/4.0/example/04_scene.json +++ b/source/presentation/4.0/example/04_scene.json @@ -32,16 +32,15 @@ "motivation": [ "painting" ], - "body": [ - { - "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", - "type": "Model", - "format": "model/gltf-binary" - } - ], - "target": [ - "https://iiif.io/api/presentation/4.0/example/scene/1/annotationPage/1" - ] + "body": { + "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/astronaut/astronaut.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": { + "id": "https://iiif.io/api/presentation/4.0/example/scene/1", + "type": "Scene" + } } ] } diff --git a/source/presentation/4.0/example/05_fragment.json b/source/presentation/4.0/example/05_fragment.json index f20f736e1..4deabccf0 100644 --- a/source/presentation/4.0/example/05_fragment.json +++ b/source/presentation/4.0/example/05_fragment.json @@ -27,25 +27,24 @@ "motivation": [ "painting" ], - "body": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004/full/max/0/default.jpg", - "type": "Image", - "format": "image/jpeg", - "height": 3966, - "width": 8800, - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004", - "profile": "level1", - "type": "ImageService3" - } - ] - } - ], - "target": [ - "https://iiif.io/api/presentation/4.0/example/05/canvas/p1" - ] + "body": { + "id": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 3966, + "width": 8800, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004", + "profile": "level1", + "type": "ImageService3" + } + ] + }, + "target": { + "id": "https://iiif.io/api/presentation/4.0/example/05/canvas/p1", + "type":"Canvas" + } } ] } @@ -59,16 +58,17 @@ "id": "https://iiif.io/api/presentation/4.0/example/05/annotation/p0001-comment", "type": "Annotation", "motivation": [ "commenting" ], - "body": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/05/annotation/bodies/koto-body", - "type": "TextualBody", - "value": "Koto with a cover being carried", - "language": "en", - "format": "text/plain" - } - ], - "target": [ "https://iiif.io/api/presentation/4.0/example/05/canvas/p1#xywh=1650,1200,925,1250" ] + "body": { + "id": "https://iiif.io/api/presentation/4.0/example/05/annotation/bodies/koto-body", + "type": "TextualBody", + "value": "Koto with a cover being carried", + "language": "en", + "format": "text/plain" + }, + "target": { + "id": "https://iiif.io/api/presentation/4.0/example/05/canvas/p1#xywh=1650,1200,925,1250", + "type": "Canvas" + } } ] } diff --git a/source/presentation/4.0/example/06_specific_resource.json b/source/presentation/4.0/example/06_specific_resource.json index d04adda90..659660944 100644 --- a/source/presentation/4.0/example/06_specific_resource.json +++ b/source/presentation/4.0/example/06_specific_resource.json @@ -27,25 +27,24 @@ "motivation": [ "painting" ], - "body": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004/full/max/0/default.jpg", - "type": "Image", - "format": "image/jpeg", - "height": 3966, - "width": 8800, - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004", - "profile": "level1", - "type": "ImageService3" - } - ] - } - ], - "target": [ - "https://iiif.io/api/presentation/4.0/example/06/canvas/p1" - ] + "body": { + "id": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 3966, + "width": 8800, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004", + "profile": "level1", + "type": "ImageService3" + } + ] + }, + "target": { + "id":"https://iiif.io/api/presentation/4.0/example/06/canvas/p1", + "type":"Canvas" + } } ] } @@ -59,30 +58,26 @@ "id": "https://iiif.io/api/presentation/4.0/example/06/annotation/p0001-comment", "type": "Annotation", "motivation": [ "commenting" ], - "body": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/06/annotation/bodies/koto-body", - "type": "TextualBody", - "value": "Koto with a cover being carried", - "language": "en", - "format": "text/plain" - } - ], - "target": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/06/resources/koto-sr", - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/06/page/p1/1", - "type": "Canvas" - }, - "selector": { - "id": "https://iiif.io/api/presentation/4.0/example/06/selectors/koto-selector", - "type": "FragmentSelector", - "value": "xywh=1650,1200,925,1250" - } + "body": { + "id": "https://iiif.io/api/presentation/4.0/example/06/annotation/bodies/koto-body", + "type": "TextualBody", + "value": "Koto with a cover being carried", + "language": "en", + "format": "text/plain" + }, + "target": { + "id": "https://iiif.io/api/presentation/4.0/example/06/resources/koto-sr", + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/06/page/p1/1", + "type": "Canvas" + }, + "selector": { + "id": "https://iiif.io/api/presentation/4.0/example/06/selectors/koto-selector", + "type": "FragmentSelector", + "value": "xywh=1650,1200,925,1250" } - ] + } } ] } diff --git a/source/presentation/4.0/example/08_range.json b/source/presentation/4.0/example/08_range.json index 1ceae1600..d653eab27 100644 --- a/source/presentation/4.0/example/08_range.json +++ b/source/presentation/4.0/example/08_range.json @@ -29,25 +29,24 @@ "motivation": [ "painting" ], - "body": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master/full/max/0/default.jpg", - "type": "Image", - "format": "image/jpeg", - "height": 2504, - "width": 1768, - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master", - "type": "ImageService3", - "profile": "level1" - } - ] - } - ], - "target": [ - "https://iiif.io/api/presentation/4.0/example/08/canvas/p1" - ] + "body": { + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 2504, + "width": 1768, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-1-21198-zz001d8m41_774608_master", + "type": "ImageService3", + "profile": "level1" + } + ] + }, + "target": { + "id":"https://iiif.io/api/presentation/4.0/example/08/canvas/p1", + "type":"Canvas" + } } ] } @@ -74,25 +73,24 @@ "motivation": [ "painting" ], - "body": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-2-21198-zz001d8m5j_774612_master/full/max/0/default.jpg", - "type": "Image", - "format": "image/jpeg", - "height": 2512, - "width": 1792, - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-2-21198-zz001d8m5j_774612_master", - "type": "ImageService3", - "profile": "level1" - } - ] - } - ], - "target": [ - "https://iiif.io/api/presentation/4.0/example/08/canvas/p2" - ] + "body": { + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-2-21198-zz001d8m5j_774612_master/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 2512, + "width": 1792, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-2-21198-zz001d8m5j_774612_master", + "type": "ImageService3", + "profile": "level1" + } + ] + }, + "target": { + "id":"https://iiif.io/api/presentation/4.0/example/08/canvas/p2", + "type":"Canvas" + } } ] } @@ -119,25 +117,24 @@ "motivation": [ "painting" ], - "body": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-3-21198-zz001d8tm5_775004_master/full/max/0/default.jpg", - "type": "Image", - "format": "image/jpeg", - "height": 2456, - "width": 1792, - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-3-21198-zz001d8tm5_775004_master", - "type": "ImageService3", - "profile": "level1" - } - ] - } - ], - "target": [ - "https://iiif.io/api/presentation/4.0/example/08/canvas/p3" - ] + "body": { + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-3-21198-zz001d8tm5_775004_master/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 2456, + "width": 1792, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-3-21198-zz001d8tm5_775004_master", + "type": "ImageService3", + "profile": "level1" + } + ] + }, + "target": { + "id":"https://iiif.io/api/presentation/4.0/example/08/canvas/p3", + "type":"Canvas" + } } ] } @@ -164,25 +161,24 @@ "motivation": [ "painting" ], - "body": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-4-21198-zz001d8tnp_775007_master/full/max/0/default.jpg", - "type": "Image", - "format": "image/jpeg", - "height": 2440, - "width": 1760, - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-4-21198-zz001d8tnp_775007_master", - "type": "ImageService3", - "profile": "level1" - } - ] - } - ], - "target": [ - "https://iiif.io/api/presentation/4.0/example/08/canvas/p4" - ] + "body": { + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-4-21198-zz001d8tnp_775007_master/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 2440, + "width": 1760, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-4-21198-zz001d8tnp_775007_master", + "type": "ImageService3", + "profile": "level1" + } + ] + }, + "target": { + "id":"https://iiif.io/api/presentation/4.0/example/08/canvas/p4", + "type":"Canvas" + } } ] } @@ -209,25 +205,24 @@ "motivation": [ "painting" ], - "body": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-5-21198-zz001d8v6f_775077_master/full/max/0/default.jpg", - "type": "Image", - "format": "image/jpeg", - "height": 2416, - "width": 1776, - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-5-21198-zz001d8v6f_775077_master", - "type": "ImageService3", - "profile": "level1" - } - ] - } - ], - "target": [ - "https://iiif.io/api/presentation/4.0/example/08/canvas/p5" - ] + "body": { + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-5-21198-zz001d8v6f_775077_master/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 2416, + "width": 1776, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-5-21198-zz001d8v6f_775077_master", + "type": "ImageService3", + "profile": "level1" + } + ] + }, + "target": { + "id":"https://iiif.io/api/presentation/4.0/example/08/canvas/p5", + "type":"Canvas" + } } ] } @@ -254,25 +249,24 @@ "motivation": [ "painting" ], - "body": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-6-21198-zz001d8v7z_775085_master/full/max/0/default.jpg", - "type": "Image", - "format": "image/jpeg", - "height": 2416, - "width": 1776, - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-6-21198-zz001d8v7z_775085_master", - "type": "ImageService3", - "profile": "level1" - } - ] - } - ], - "target": [ - "https://iiif.io/api/presentation/4.0/example/08/canvas/p6" - ] + "body": { + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-6-21198-zz001d8v7z_775085_master/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 2416, + "width": 1776, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/d3bbf5397c6df6b894c5991195c912ab-6-21198-zz001d8v7z_775085_master", + "type": "ImageService3", + "profile": "level1" + } + ] + }, + "target": { + "id":"https://iiif.io/api/presentation/4.0/example/08/canvas/p6", + "type":"Canvas" + } } ] } diff --git a/source/presentation/4.0/example/uc01_artwork.json b/source/presentation/4.0/example/uc01_artwork.json index 687fc5e01..249e4d0c2 100644 --- a/source/presentation/4.0/example/uc01_artwork.json +++ b/source/presentation/4.0/example/uc01_artwork.json @@ -109,25 +109,24 @@ "motivation": [ "painting" ], - "body": [ - { - "id": "https://iiif.io/api/presentation/example/image/painting/full/max/0/default.jpg", - "type": "Image", - "format": "image/jpeg", - "width": 2000, - "height": 1271, - "service": [ - { - "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural", - "type": "ImageService3", - "profile": "level1" - } - ] - } - ], - "target": [ - "https://iiif.io/api/presentation/4.0/example/09/canvas" - ] + "body": { + "id": "https://iiif.io/api/presentation/example/image/painting/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "width": 2000, + "height": 1271, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/421e65be2ce95439b3ad6ef1f2ab87a9-dee-natural", + "type": "ImageService3", + "profile": "level1" + } + ] + }, + "target": { + "id": "https://iiif.io/api/presentation/4.0/example/09/canvas", + "type":"Canvas" + } } ] } diff --git a/source/presentation/4.0/example/uc02_book.json b/source/presentation/4.0/example/uc02_book.json index bd1c0ef92..c2aed5a2e 100644 --- a/source/presentation/4.0/example/uc02_book.json +++ b/source/presentation/4.0/example/uc02_book.json @@ -37,7 +37,7 @@ "id": "https://iiif.io/api/presentation/4.0/example/uc02/annotation/p0001-image", "type": "Annotation", "motivation": ["painting"], - "body": [{ + "body": { "id": "https://iiif.io/api/image/3.0/example/reference/59d09e6773341f28ea166e9f3c1e674f-gallica_ark_12148_bpt6k1526005v_f18/full/max/0/default.jpg", "type": "Image", "format": "image/jpeg", @@ -50,7 +50,7 @@ "profile": "level1" } ] - }], + }, "target": { "id": "https://iiif.io/api/presentation/4.0/example/uc02/canvas/p1", "type": "Canvas" diff --git a/source/presentation/4.0/example/uc03_anno_page.json b/source/presentation/4.0/example/uc03_anno_page.json index 38cebaa52..bd538e1c4 100644 --- a/source/presentation/4.0/example/uc03_anno_page.json +++ b/source/presentation/4.0/example/uc03_anno_page.json @@ -9,34 +9,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "I. 54. Jahrgang" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,376,399,53" - } - } - ] + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "I. 54. Jahrgang" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,376,399,53" + } + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-2", @@ -44,34 +40,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "Nr. 29" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Nr. 29" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=309,817,121,39" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=309,817,121,39" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-3", @@ -79,34 +71,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "Chef-Redakteur Theodor Wolfi in Berlin, 7" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=95,876,619,31" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Chef-Redakteur Theodor Wolfi in Berlin, 7" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=95,876,619,31" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-4", @@ -114,34 +102,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "DB T. W. Mit Bewunderung ſtehen wir vor dem erfreulichen" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=54,1233,894,35" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "DB T. W. Mit Bewunderung ſtehen wir vor dem erfreulichen" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=54,1233,894,35" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-5", @@ -149,34 +133,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "men, Wifer einer Staat3anwaltſchaft, die jeht ſogar ihre Nachtruhe" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "men, Wifer einer Staat3anwaltſchaft, die jeht ſogar ihre Nachtruhe" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,1268,950,34" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,1268,950,34" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-6", @@ -184,34 +164,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "einnpiert, während ſie in einigen bekannten Fällen ſchon" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "einnpiert, während ſie in einigen bekannten Fällen ſchon" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,1300,950,34" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,1300,950,34" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-7", @@ -219,34 +195,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "mi Tage zu ſchlummern ſchien. Aber nachdem man ge-" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,1335,950,39" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "mi Tage zu ſchlummern ſchien. Aber nachdem man ge-" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,1335,950,39" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-8", @@ -254,34 +226,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "d Wingt. Auch draußen in der Welt wird noch eine Weile lang" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "mar> Wingt. Auch draußen in der Welt wird noch eine Weile lang" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,1996,952,34" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,1996,952,34" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-28", @@ -954,34 +846,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": ") ohne Mos ſo weitergehen wie biöher. Es wird unermüdlich über" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": ") ohne Mos ſo weitergehen wie biöher. Es wird unermüdlich über" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,2029,953,33" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,2029,953,33" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-29", @@ -989,34 +877,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "ee Schulden geſprochen werden, die Frankreich nicht bezahlen" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,2056,952,41" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ee Schulden geſprochen werden, die Frankreich nicht bezahlen" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,2056,952,41" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-30", @@ -1024,34 +908,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "ann, ill, und über den Sicherheitspakt, der wegen der öſtlichen An-" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,2096,953,43" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ann, ill, und über den Sicherheitspakt, der wegen der öſtlichen An-" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,2096,953,43" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-31", @@ -1059,34 +939,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "Mn 7 ingjel keine Liebe in England findet, und über den Kontroll-" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Mn 7 ingjel keine Liebe in England findet, und über den Kontroll-" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,2129,952,47" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,2129,952,47" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-32", @@ -1094,34 +970,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "+ SausFricht, den man un3 immer noch vorenthält. Hat es viel" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "+ SausFricht, den man un3 immer noch vorenthält. Hat es viel" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,2162,953,33" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,2162,953,33" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-33", @@ -1129,34 +1001,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "jiliale Woc>, noch Worte in dieſe Diskuſſionen hineinzugießen, die" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,2194,953,35" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "jiliale Woc>, noch Worte in dieſe Diskuſſionen hineinzugießen, die" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,2194,953,35" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-34", @@ -1164,34 +1032,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "on aus zahlloſen Quellen übereich gewäſſert werden und" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=102,2229,851,34" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "on aus zahlloſen Quellen übereich gewäſſert werden und" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=102,2229,851,34" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-35", @@ -1199,34 +1063,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "endlich weiterrinnen? ES iſt zum mindeſten ebenſo inter-" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "endlich weiterrinnen? ES iſt zum mindeſten ebenſo inter-" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=103,2260,850,36" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=103,2260,850,36" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-36", @@ -1234,34 +1094,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "einfach!" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=7,2249,63,21" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "einfach!" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=7,2249,63,21" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-37", @@ -1269,34 +1125,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "m, fert" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,2273,73,19" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "m, fert" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,2273,73,19" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-38", @@ -1304,34 +1156,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "iberiagant, ſich mit den drei jungen Männern, den zwei Reichs-" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "iberiagant, ſich mit den drei jungen Männern, den zwei Reichs-" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,2294,953,37" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,2294,953,37" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-39", @@ -1339,34 +1187,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "mrn hen und dem Balten, zu beſchäftigen, die ſeit dem Monat" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "mrn hen und dem Balten, zu beſchäftigen, die ſeit dem Monat" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,2327,954,39" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,2327,954,39" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-40", @@ -1374,34 +1218,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "ſtraße" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ſtraße" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,2370,62,22" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,2370,62,22" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-41", @@ -1409,34 +1249,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "tober in den Händen der allgütigen ruſſiſchen Tſcheka ſind." - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=103,2359,850,37" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "tober in den Händen der allgütigen ruſſiſchen Tſcheka ſind." + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=103,2359,850,37" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-42", @@ -1444,34 +1280,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "Tiefe drei jungen Männex, der ſchon mit dem Doktortitel" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=111,2392,843,37" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Tiefe drei jungen Männex, der ſchon mit dem Doktortitel" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=111,2392,843,37" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-43", @@ -1479,34 +1311,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "wuierte dreiundzwanzigjährige Geograph, und die beiden" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "wuierte dreiundzwanzigjährige Geograph, und die beiden" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=41,2425,908,39" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=41,2425,908,39" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-44", @@ -1514,34 +1342,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "= arifudenten, ſind angeblich mit der Abſicht, die Hauptperſonen" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "= arifudenten, ſind angeblich mit der Abſicht, die Hauptperſonen" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,2458,955,38" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,2458,955,38" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-45", @@ -1549,34 +1373,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": ", Sin Sowjetſtaates zu ermorden, nach Moskau gekommen. Sie" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,2491,955,37" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": ", Sin Sowjetſtaates zu ermorden, nach Moskau gekommen. Sie" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,2491,955,37" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-46", @@ -1584,34 +1404,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "en zwär nicht Paß und Einreiſeerlaubnis, deren Echtheit" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=111,2525,843,34" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "en zwär nicht Paß und Einreiſeerlaubnis, deren Echtheit" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=111,2525,843,34" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-47", @@ -1619,34 +1435,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "ee ht beſtritten werden kann, aber Einladungsbriefe ruſſiſcher" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ee ht beſtritten werden kann, aber Einladungsbriefe ruſſiſcher" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,2553,955,47" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,2553,955,47" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-48", @@ -1654,34 +1466,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "15. PWudentenſchaften, auf die ſie ſich beriefen, gefälſcht haben," + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "15. PWudentenſchaften, auf die ſie ſich beriefen, gefälſcht haben," + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,2589,956,38" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,2589,956,38" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-49", @@ -1689,34 +1497,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "Tage Wd man hat, wie verſichert wird, auch Waffen und die un-" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=8,2624,948,36" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Tage Wd man hat, wie verſichert wird, auch Waffen und die un-" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=8,2624,948,36" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-50", @@ -1724,34 +1528,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "6 Mbehrlichen Giftfläſchhen bei ihnen entde>t. Die drei ge-" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,2655,957,38" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "6 Mbehrlichen Giftfläſchhen bei ihnen entde>t. Die drei ge-" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,2655,957,38" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-51", @@ -1759,34 +1559,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "te en, ſagt die Tſcheka, recht3radikalen Geheimbünden in" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "te en, ſagt die Tſcheka, recht3radikalen Geheimbünden in" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,2684,955,47" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,2684,955,47" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-52", @@ -1794,34 +1590,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": ", MaiWutſhland an. Bei ihren Mordplänen hatten ſie es be-" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,2725,956,34" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": ", MaiWutſhland an. Bei ihren Mordplänen hatten ſie es be-" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,2725,956,34" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-53", @@ -1829,34 +1621,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "“ „Mders auf Stalin und Troßki abgeſehen. Uns anderen er-" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,2758,955,34" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "“ „Mders auf Stalin und Troßki abgeſehen. Uns anderen er-" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,2758,955,34" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-54", @@ -1864,34 +1652,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "men-," + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "men-," + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,2788,60,16" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,2788,60,16" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-55", @@ -1899,34 +1683,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "ndau Wint es zunächſt ſeltſam, daß rechtsradikale Geheimgruppen," + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ndau Wint es zunächſt ſeltſam, daß rechtsradikale Geheimgruppen," + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=4,2790,952,38" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=4,2790,952,38" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-56", @@ -1934,34 +1714,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "3 14531." - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,2830,74,27" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "3 14531." + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,2830,74,27" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-57", @@ -1969,34 +1745,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "bisher nur politiſche Gegner in Deutſchland niederknallten" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=115,2824,840,34" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "bisher nur politiſche Gegner in Deutſchland niederknallten" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=115,2824,840,34" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-58", @@ -2004,34 +1776,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "inaſd den Bolſchewismus als beſten Bundesgenoſſen betrachten," + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "inaſd den Bolſchewismus als beſten Bundesgenoſſen betrachten," + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=50,2858,906,35" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=50,2858,906,35" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-59", @@ -2039,34 +1807,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "4 Jdee gefaßt haben ſollten, den heute ziemlich einfluß-" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "4 Jdee gefaßt haben ſollten, den heute ziemlich einfluß-" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=54,2891,901,36" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=54,2891,901,36" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-60", @@ -2074,34 +1838,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "Offeruſüſn Troßki umzubringen. Wa3 das Gift betrifft, fo iſt von" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=24,2924,931,34" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Offeruſüſn Troßki umzubringen. Wa3 das Gift betrifft, fo iſt von" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=24,2924,931,34" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-61", @@ -2109,34 +1869,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "1f VoſYk fſtudentiſhen Freunden der Verhafteten in der" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,2955,956,37" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "1f VoſYk fſtudentiſhen Freunden der Verhafteten in der" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,2955,956,37" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-62", @@ -2144,34 +1900,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "liner Apotheke, die es geliefert hat, feſtgeſtellt worden, daß" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "liner Apotheke, die es geliefert hat, feſtgeſtellt worden, daß" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=106,2991,850,34" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=106,2991,850,34" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-63", @@ -2179,34 +1931,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "ehlt ftſein Mittel gegen Malaria iſt. Jndeſſen, die Tſcheka erklärt" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,3023,955,35" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ehlt ftſein Mittel gegen Malaria iſt. Jndeſſen, die Tſcheka erklärt" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,3023,955,35" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-64", @@ -2214,34 +1962,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "-harloi\" daß ſie imſtande ſei, all' unſere Zweifel zu zerſtreuen." - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,3057,954,35" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "-harloi\" daß ſie imſtande ſei, all' unſere Zweifel zu zerſtreuen." + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,3057,954,35" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-65", @@ -2249,34 +1993,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "einf beſitt „Dokumente“, die ſie leider nicht zeigt. Nachdem" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "einf beſitt „Dokumente“, die ſie leider nicht zeigt. Nachdem" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,3087,956,45" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,3087,956,45" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-66", @@ -2284,34 +2024,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "* Bongſtvollen Eltern, die deutſchen Amtsſtellen, die ange-" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "* Bongſtvollen Eltern, die deutſchen Amtsſtellen, die ange-" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=57,3123,899,36" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=57,3123,899,36" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-67", @@ -2319,34 +2055,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "rus Zifwnſten deutſchen Univerſitätzlehrer und andere Perſonen" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "rus Zifwnſten deutſchen Univerſitätzlehrer und andere Perſonen" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1,3158,954,34" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1,3158,954,34" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-68", @@ -2354,34 +2086,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "Mme | Monate hindurch vergeblich verſucht hatten, irgendeine" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=2,3189,955,46" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Mme | Monate hindurch vergeblich verſucht hatten, irgendeine" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=2,3189,955,46" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-69", @@ -2389,34 +2117,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "ße 485, Whricht über das Befinden der Eingekerkerten zu erlangen," + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ße 485, Whricht über das Befinden der Eingekerkerten zu erlangen," + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1,3223,955,36" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1,3223,955,36" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-70", @@ -2424,34 +2148,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "man in der vorigen Woche dem Rektor der Berliner" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "man in der vorigen Woche dem Rektor der Berliner" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=129,3258,828,33" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=129,3258,828,33" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-71", @@ -2459,34 +2179,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "ganteſte Wverſität, Profeſſor Holl, der ſich warmherzig für" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,3290,957,35" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ganteſte Wverſität, Profeſſor Holl, der ſich warmherzig für" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,3290,957,35" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-72", @@ -2494,34 +2210,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "ee Freilaſſung eingeſeßt hatte, einen Brief des" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,3320,957,43" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ee Freilaſſung eingeſeßt hatte, einen Brief des" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,3320,957,43" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-73", @@ -2529,34 +2241,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "-g 5140. WW. Kindermann überbracht. Kindermann ſagt in" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "-g 5140. WW. Kindermann überbracht. Kindermann ſagt in" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,3357,956,33" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,3357,956,33" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-74", @@ -2564,34 +2272,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "yer, Wem Briefe, „die durch G. P. U. unternommenen Nach-" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,3391,955,40" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "yer, Wem Briefe, „die durch G. P. U. unternommenen Nach-" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,3391,955,40" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-75", @@ -2599,34 +2303,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "6 (Mh ungen“ hätten ergeben, daß ſeine beiden Reiſekameraden" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1,3419,954,40" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "6 (Mh ungen“ hätten ergeben, daß ſeine beiden Reiſekameraden" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1,3419,954,40" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-76", @@ -2634,34 +2334,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "et, Miher in Deutſchland in faſciſtiſchen «Kreiſen ſich betätigt" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "et, Miher in Deutſchland in faſciſtiſchen «Kreiſen ſich betätigt" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,3441,957,50" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,3441,957,50" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-77", @@ -2669,34 +2365,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "En en“, und „daß ihre Reiſeabſichten andre als wiſſenſchaft-" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "En en“, und „daß ihre Reiſeabſichten andre als wiſſenſchaft-" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=3,3491,953,46" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=3,3491,953,46" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-78", @@ -2704,34 +2396,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "| 1]" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "| 1]" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,3524,47,13" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,3524,47,13" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-79", @@ -2739,34 +2427,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "raße M: geweſen ſeien. Er ſelbſt habe davon nichts gewußt und" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,3524,956,41" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "raße M: geweſen ſeien. Er ſelbſt habe davon nichts gewußt und" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,3524,956,41" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-80", @@ -2774,34 +2458,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "e fich „während der Unterſuchung von der Objektivität" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "e fich „während der Unterſuchung von der Objektivität" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=119,3559,838,34" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=119,3559,838,34" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-81", @@ -2809,34 +2489,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "tklaffiz. MW Unterſuchungsorgane überzeugt“. Er habe zu dieſen Or-" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "tklaffiz. MW Unterſuchungsorgane überzeugt“. Er habe zu dieſen Or-" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,3592,957,38" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,3592,957,38" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-82", @@ -2844,34 +2520,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "EEE en „vollkommenes Vertrauen“. Der Verhaftete bittet de8halb" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,3617,958,49" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "EEE en „vollkommenes Vertrauen“. Der Verhaftete bittet de8halb" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,3617,958,49" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-83", @@ -2879,34 +2551,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "en, über die man" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=5,3751,955,41" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "eimufanend und korrekt\". . . „Von den Schre>en, über die man" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=5,3751,955,41" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-87", @@ -3019,34 +2675,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "ße 19 Weutſchland ſpricht, habe ich in der Zeit meiner Verhaftung" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,3791,961,40" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ße 19 Weutſchland ſpricht, habe ich in der Zeit meiner Verhaftung" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,3791,961,40" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-88", @@ -3054,34 +2706,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "trbeit. Wb. P. U. nichts bemerken können.\" Am Schluſſe verſichert" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,3822,960,44" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "trbeit. Wb. P. U. nichts bemerken können.\" Am Schluſſe verſichert" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,3822,960,44" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-89", @@ -3089,34 +2737,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "33. Briefſchreiber, er gebe „dieſe Erklärungen aus freiem" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "33. Briefſchreiber, er gebe „dieſe Erklärungen aus freiem" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,3859,961,38" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,3859,961,38" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-90", @@ -3124,34 +2768,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "Tag Wen und freier Jnitiative“ ab, und „ohne jeden Zwang“." - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,3892,962,39" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Tag Wen und freier Jnitiative“ ab, und „ohne jeden Zwang“." + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,3892,962,39" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-91", @@ -3159,34 +2799,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "be M. zu ſich ja jeder das Seinige denken kann. ." - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,3922,872,44" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "be M. zu ſich ja jeder das Seinige denken kann. ." + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,3922,872,44" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-92", @@ -3194,34 +2830,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "* wide Verwandten, die Lehrer und Freunde der jungen" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "* wide Verwandten, die Lehrer und Freunde der jungen" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,3956,961,44" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,3956,961,44" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-93", @@ -3229,34 +2861,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "m Kine werden die Erzählungen, die nun von der „Jſtweſtia" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "m Kine werden die Erzählungen, die nun von der „Jſtweſtia" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,3991,949,39" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,3991,949,39" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-94", @@ -3264,34 +2892,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "Heider Wroitet und in die Welt hinausgeſchikt werden, mit" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,4025,963,34" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Heider Wroitet und in die Welt hinausgeſchikt werden, mit" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,4025,963,34" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-95", @@ -3299,34 +2923,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "Ei ielleiht immer noh" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,4056,963,29" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Ei ielleiht immer noh" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,4056,963,29" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-96", @@ -3334,34 +2954,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "fer Ueberraſchung leſen und vielleich 3 )" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "fer Ueberraſchung leſen und vielleich 3 )" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=64,4059,896,40" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=64,4059,896,40" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-97", @@ -3369,34 +2985,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "228 feln, obgleih natürlih au< ſie der bewährten" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "228 feln, obgleih natürlih au< ſie der bewährten" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,4078,963,53" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,4078,963,53" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-98", @@ -3404,34 +3016,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "ante Wfa das allergrößte Bertrauen entgegenbringen." - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,4125,962,38" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ante Wfa das allergrößte Bertrauen entgegenbringen." + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,4125,962,38" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-99", @@ -3439,34 +3047,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "reiſen. Mn biaher hatten ſie ſich von dem Weſen, den" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,4154,963,44" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "reiſen. Mn biaher hatten ſie ſich von dem Weſen, den" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,4154,963,44" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-100", @@ -3474,34 +3078,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "hrung \"Wen und Anſchauungen beſonders des Kindermann und des" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "hrung \"Wen und Anſchauungen beſonders des Kindermann und des" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,4194,965,33" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,4194,965,33" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-101", @@ -3509,34 +3109,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "aſtr. %Wiſcht ein 208 anderes Bild gemacht. I< habe" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,4198,965,68" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "aſtr. %Wiſcht ein 208 anderes Bild gemacht. I< habe" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,4198,965,68" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-102", @@ -3544,34 +3140,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "är; drei eines Tages kennen gelernt, als ſie, mit den Empfeh" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,4251,964,52" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "är; drei eines Tages kennen gelernt, als ſie, mit den Empfeh" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,4251,964,52" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-103", @@ -3579,34 +3171,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "n. Hanſen hervorragender Profeſſoven, linksſtehender und rechts-" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "n. Hanſen hervorragender Profeſſoven, linksſtehender und rechts-" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,4293,966,41" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,4293,966,41" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-104", @@ -3614,34 +3202,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "fertig\" Wender, ausgerüſtet und ſchon mit allen Päſſen, Scheinen" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "fertig\" Wender, ausgerüſtet und ſchon mit allen Päſſen, Scheinen" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,4327,966,43" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,4327,966,43" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-105", @@ -3649,34 +3233,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "168 7388. d Einladungen verſehen, bei mir vorſprachen und, gleich" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,4356,967,43" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "168 7388. d Einladungen verſehen, bei mir vorſprachen und, gleich" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,4356,967,43" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-106", @@ -3684,34 +3264,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "“Str. Men anderen, fragten, 'ob Reiſeberichte willkommen ſeien." - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=0,4389,966,47" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "“Str. Men anderen, fragten, 'ob Reiſeberichte willkommen ſeien." + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=0,4389,966,47" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-107", @@ -3719,34 +3295,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "ſuchten ſie, offenbar hier und dort anpochend -- auch bei" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ſuchten ſie, offenbar hier und dort anpochend -- auch bei" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=136,4427,831,40" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=136,4427,831,40" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-108", @@ -3754,34 +3326,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "duſtriefirmen, was man ihnen jeßt in Mozkau als „Handels" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "duſtriefirmen, was man ihnen jeßt in Mozkau als „Handels" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=127,4458,838,44" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=127,4458,838,44" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-109", @@ -3789,34 +3357,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "reiswert." - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=2,4474,88,20" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "reiswert." + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=2,4474,88,20" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-110", @@ -3824,34 +3388,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "Berliner" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=161,459,1063,329" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Berliner" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=161,459,1063,329" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-111", @@ -3859,34 +3419,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "und Handels-Zeitung" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "und Handels-Zeitung" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=920,826,1034,88" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=920,826,1034,88" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-112", @@ -3894,34 +3450,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "Die Verhaftungen in Moskau,." - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=377,1017,2132,178" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Die Verhaftungen in Moskau,." + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=377,1017,2132,178" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-113", @@ -3929,34 +3481,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "PEET Rg R RRgRRRgRgpRpPpPr ry yr rT NR" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=975,1923,14,1675" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "PEET Rg R RRgRRRgRgpRpPpPr ry yr rT NR" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=975,1923,14,1675" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-114", @@ -3964,34 +3512,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "Abend-Ausgabe" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Abend-Ausgabe" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1161,365,508,105" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1161,365,508,105" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-115", @@ -3999,34 +3543,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "Tageblatt" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Tageblatt" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1576,453,1127,339" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1576,453,1127,339" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-116", @@ -4034,34 +3574,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "Einzel-Nummer 10 Pfennig." - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=2317,349,479,59" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Einzel-Nummer 10 Pfennig." + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=2317,349,479,59" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-117", @@ -4069,34 +3605,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "Prentice debbie" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=2318,395,479,26" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Prentice debbie" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=2318,395,479,26" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-118", @@ -4104,34 +3636,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "Montag. 16. Februar 19235" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Montag. 16. Februar 19235" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=2246,813,499,44" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=2246,813,499,44" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-119", @@ -4139,34 +3667,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "Druck und Verlaa von Ru doi Moſſe in Berlin.\"" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Druck und Verlaa von Ru doi Moſſe in Berlin.\"" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=2172,866,653,35" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=2172,866,653,35" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-120", @@ -4174,34 +3698,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "die eingekerkerten jungen Deutſchen." - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1087,1230,1655,139" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "die eingekerkerten jungen Deutſchen." + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1087,1230,1655,139" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-121", @@ -4209,34 +3729,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "Bas. die Tſcheka behauptet." - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1159,1413,573,60" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Bas. die Tſcheka behauptet." + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1159,1413,573,60" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-122", @@ -4244,34 +3760,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "Celegramm unſere8 Korretyrondenten.)" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Celegramm unſere8 Korretyrondenten.)" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1087,1485,719,29" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1087,1485,719,29" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-123", @@ -4279,34 +3791,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "dü.) Moskau, 15. Februar." - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1473,1529,378,31" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "dü.) Moskau, 15. Februar." + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1473,1529,378,31" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-124", @@ -4314,34 +3822,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "Anknüpfend an eine bevorſtehende Interpellation der Sozial-" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1044,1565,849,33" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Anknüpfend an eine bevorſtehende Interpellation der Sozial-" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1044,1565,849,33" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-125", @@ -4349,34 +3853,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "demofkraten im Reichstag über die Gefangenhaltung der drei" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "demofkraten im Reichstag über die Gefangenhaltung der drei" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1003,1599,889,29" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1003,1599,889,29" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-126", @@ -4384,34 +3884,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "jungen Deutſchen in Moskau und andere deutſche Gefangene, die aus" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "jungen Deutſchen in Moskau und andere deutſche Gefangene, die aus" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1004,1631,889,29" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1004,1631,889,29" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-127", @@ -4419,34 +3915,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "politiſchen Gründen in ruſſiſchen Gefängniſſen feſtgehalten würden," + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "politiſchen Gründen in ruſſiſchen Gefängniſſen feſtgehalten würden," + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1004,1664,890,29" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1004,1664,890,29" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-128", @@ -4454,34 +3946,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "ſchreibt die „Jsweſtija“, dieſe Interpellation ſei durch die Or-" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1004,1695,891,31" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ſchreibt die „Jsweſtija“, dieſe Interpellation ſei durch die Or-" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1004,1695,891,31" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-129", @@ -4489,34 +3977,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "ganiſation Conſul vorbereitet (!!), die durch Finanz-" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1005,1729,889,30" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ganiſation Conſul vorbereitet (!!), die durch Finanz-" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1005,1729,889,30" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-130", @@ -4524,34 +4008,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "und Handelsfreiſe auf die Sozialdemokraten eingewirkt habe. Die" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "und Handelsfreiſe auf die Sozialdemokraten eingewirkt habe. Die" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1005,1762,890,30" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1005,1762,890,30" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-131", @@ -4559,34 +4039,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "„Jsweſtija“ beklagt ſich weiter über die Kampagne der deutſchen" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "„Jsweſtija“ beklagt ſich weiter über die Kampagne der deutſchen" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1005,1795,890,31" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1005,1795,890,31" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-132", @@ -4594,34 +4070,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "Blätter, welche die Beziehungen zu Sowjetrußland verſchlechtern" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1004,1828,891,30" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Blätter, welche die Beziehungen zu Sowjetrußland verſchlechtern" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1004,1828,891,30" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-133", @@ -4629,34 +4101,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "ſolle, und fährt dann fort: „Wir ſind in der Lage, an Hand un-" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1006,1860,890,31" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ſolle, und fährt dann fort: „Wir ſind in der Lage, an Hand un-" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1006,1860,890,31" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-134", @@ -4664,34 +4132,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "beſtreitbarer Dokumente, die der Sowjetregierung zur Verfügung" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "beſtreitbarer Dokumente, die der Sowjetregierung zur Verfügung" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1005,1893,891,32" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1005,1893,891,32" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-135", @@ -4699,34 +4163,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "ſtehen, nachzuweiſen, daß dieſe „jungen Gelehrten Fälſcher von" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ſtehen, nachzuweiſen, daß dieſe „jungen Gelehrten Fälſcher von" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1005,1926,891,31" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1005,1926,891,31" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-136", @@ -4734,34 +4194,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "Dokumenten und Spione ſind, die eine deutſche" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1005,1958,892,32" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Dokumenten und Spione ſind, die eine deutſche" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1005,1958,892,32" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-137", @@ -4769,34 +4225,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "faſciſtiſche Organiſation zu terroriſtiſchen" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1005,1991,891,32" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "faſciſtiſche Organiſation zu terroriſtiſchen" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1005,1991,891,32" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-138", @@ -4804,34 +4256,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "Zwecken nach Moskau abkommandierte . . . .“ „Die Or-" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Zwecken nach Moskau abkommandierte . . . .“ „Die Or-" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1005,2024,892,32" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1005,2024,892,32" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-139", @@ -4839,34 +4287,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "ganiſation „Conſul“ hat - bereits 1923 beſchloſſen," - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1005,2057,892,31" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ganiſation „Conſul“ hat - bereits 1923 beſchloſſen," + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1005,2057,892,31" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-140", @@ -4874,34 +4318,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "ihre terroriſtiſche Tätigkeit auszudehnen und einen Plan" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1007,2090,891,31" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ihre terroriſtiſche Tätigkeit auszudehnen und einen Plan" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1007,2090,891,31" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-141", @@ -4909,34 +4349,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "ausgearbeitet für Attentate auf hervorragende kommuniſtiſche" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ausgearbeitet für Attentate auf hervorragende kommuniſtiſche" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1006,2123,892,31" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1006,2123,892,31" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-142", @@ -4944,34 +4380,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "Staatsmänner in. Mos8kau. Im Dezember 1923 wurde eine" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Staatsmänner in. Mos8kau. Im Dezember 1923 wurde eine" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1008,2156,890,31" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1008,2156,890,31" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-143", @@ -4979,34 +4411,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "Gruppe Karl Kindermann8 mit der Ausführung" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1007,2188,891,32" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Gruppe Karl Kindermann8 mit der Ausführung" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1007,2188,891,32" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-144", @@ -5014,34 +4442,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "des Planes auf ruſſiſchem Boden beauftragt. Im Juli 1924 hatte ſie" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1007,2222,891,31" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "des Planes auf ruſſiſchem Boden beauftragt. Im Juli 1924 hatte ſie" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1007,2222,891,31" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-145", @@ -5049,34 +4473,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "ſchon ganz beſtimmte Anweiſungen erhalten, deren erſte Opfer" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ſchon ganz beſtimmte Anweiſungen erhalten, deren erſte Opfer" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1005,2253,892,32" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1005,2253,892,32" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-146", @@ -5084,34 +4504,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "ſowjetruſſiſche Staat8männer in MoSkau ſein" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ſowjetruſſiſche Staat8männer in MoSkau ſein" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1006,2287,891,31" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1006,2287,891,31" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-147", @@ -5119,34 +4535,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "ſollten. Die „Jsweſtija“ behauptet, daß zur Maxsfierung ihrer" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1008,2320,890,33" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ſollten. Die „Jsweſtija“ behauptet, daß zur Maxsfierung ihrer" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1008,2320,890,33" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-148", @@ -5154,34 +4566,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "Abſichten die jekt Verhafteten fich an die Kommuniſtiſche Partei" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1005,2352,891,33" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Abſichten die jekt Verhafteten fich an die Kommuniſtiſche Partei" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1005,2352,891,33" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-149", @@ -5189,34 +4597,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "heranmachten,“ uur in- die ton muniſtiſchen Kreiſe Moskaus einzu" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "heranmachten,“ uur in- die ton muniſtiſchen Kreiſe Moskaus einzu" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1005,2387,894,33" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1005,2387,894,33" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-150", @@ -5224,34 +4628,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "dringen. Sie fälſchten die Mitgliedskarten (Warum? Sie konnten" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1005,2419,893,32" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "dringen. Sie fälſchten die Mitgliedskarten (Warum? Sie konnten" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1005,2419,893,32" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-151", @@ -5259,34 +4659,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "ja ecwies, die er bis" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1015,4047,890,35" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "dürftigkeit, freiwillig eine Unterſtüßung zurü>wies, die er bis" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1015,4047,890,35" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-234", @@ -8164,34 +7232,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "dahin von einem ihn zu reaktionär dünkenden Gönner erhielt." + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "dahin von einem ihn zu reaktionär dünkenden Gönner erhielt." + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1016,4080,889,37" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1016,4080,889,37" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-235", @@ -8199,34 +7263,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "Statt weiterer Bekundungen will ich, mit einigen Kürzungen," - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1016,4114,890,37" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Statt weiterer Bekundungen will ich, mit einigen Kürzungen," + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1016,4114,890,37" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-236", @@ -8234,34 +7294,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "die Schilderung hierher ſeen, die mir ſein Vater, ein in Bop-" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "die Schilderung hierher ſeen, die mir ſein Vater, ein in Bop-" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1016,4148,889,36" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1016,4148,889,36" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-237", @@ -8269,34 +7325,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "pard lebender ehemaliger Gymnaſialprofeſſor, entwirft:" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1016,4181,793,36" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "pard lebender ehemaliger Gymnaſialprofeſſor, entwirft:" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1016,4181,793,36" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-238", @@ -8304,34 +7356,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "„Herzlichen Dank für Jhr Freundliches Schreiben, das mir" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "„Herzlichen Dank für Jhr Freundliches Schreiben, das mir" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1083,4217,822,31" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1083,4217,822,31" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-239", @@ -8339,34 +7387,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "68jährigem Mann ungemein wohlgetan hat. Was nun die hFe-" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1041,4247,864,33" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "68jährigem Mann ungemein wohlgetan hat. Was nun die hFe-" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1041,4247,864,33" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-240", @@ -8374,34 +7418,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "wünſchten Aufflärungen über Theo angeht, ſo hängen dieſe mit" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "wünſchten Aufflärungen über Theo angeht, ſo hängen dieſe mit" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1042,4277,864,33" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1042,4277,864,33" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-241", @@ -8409,34 +7449,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "meiner eigenen Stellung zur Kirche und zum Staate eng zu-" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1042,4307,863,34" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "meiner eigenen Stellung zur Kirche und zum Staate eng zu-" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1042,4307,863,34" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-242", @@ -8444,34 +7480,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "ſammen. JH bin Anhänger der darwiniſtiſchen Theorie. Jn" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ſammen. JH bin Anhänger der darwiniſtiſchen Theorie. Jn" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1042,4337,863,33" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1042,4337,863,33" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-243", @@ -8479,34 +7511,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "politiſcher Hinſicht bin ih Staat3ſozialiſt, wenn ich auch" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1043,4367,863,32" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "politiſcher Hinſicht bin ih Staat3ſozialiſt, wenn ich auch" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1043,4367,863,32" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-244", @@ -8514,34 +7542,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "weder der ſozialdemokratiſchen noch kommuniſtſhen Partei ange-" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "weder der ſozialdemokratiſchen noch kommuniſtſhen Partei ange-" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1043,4397,862,32" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1043,4397,862,32" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-245", @@ -8549,34 +7573,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "höre; ich dürfte ungefähr der Richtung de? „Berliner Tageblattes“\"" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1043,4427,861,33" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "höre; ich dürfte ungefähr der Richtung de? „Berliner Tageblattes“\"" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1043,4427,861,33" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-246", @@ -8584,34 +7604,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "anzugliedern ſein, obwohl ich mich von jeder aktiven politiſchen" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "anzugliedern ſein, obwohl ich mich von jeder aktiven politiſchen" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1044,4458,862,34" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1044,4458,862,34" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-247", @@ -8619,34 +7635,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "Beteiligung biöher vollſtändig ferngehalten habe und ſeit meiner" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1980,2743,866,35" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Beteiligung biöher vollſtändig ferngehalten habe und ſeit meiner" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1980,2743,866,35" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-248", @@ -8654,34 +7666,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "vor 17 Jahren nachgeſuchten und erhaltenen Penſionierung nur" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "vor 17 Jahren nachgeſuchten und erhaltenen Penſionierung nur" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1980,2774,866,34" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1980,2774,866,34" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-249", @@ -8689,34 +7697,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "den Wiſſenſchaften gelebt habe. Jm übrigen tolerant" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1980,2803,868,37" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "den Wiſſenſchaften gelebt habe. Jm übrigen tolerant" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1980,2803,868,37" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-250", @@ -8724,34 +7728,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "laſſe ich jeden nach jeiner Manier ſelig werden. Sie werden es" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "laſſe ich jeden nach jeiner Manier ſelig werden. Sie werden es" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1979,2830,869,41" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1979,2830,869,41" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-251", @@ -8759,34 +7759,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "alfo verſtehen, daß ich meinem Sohn bei feinem im September" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1978,2861,870,37" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "alfo verſtehen, daß ich meinem Sohn bei feinem im September" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1978,2861,870,37" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-252", @@ -8794,34 +7790,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "vorigen Jahres erfolgten Beſuch keine Schwierigkeiten in den Weg" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "vorigen Jahres erfolgten Beſuch keine Schwierigkeiten in den Weg" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1980,2890,869,35" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1980,2890,869,35" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-253", @@ -8829,34 +7821,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "gelegt habe, als er mir geſtand, daß er zur kommuni ſtiſchen" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1979,2920,869,37" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "gelegt habe, als er mir geſtand, daß er zur kommuni ſtiſchen" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1979,2920,869,37" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-254", @@ -8864,34 +7852,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "Partei übergegangen ſei. Wer nicht rechts gehen kann," + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Partei übergegangen ſei. Wer nicht rechts gehen kann," + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1979,2951,871,37" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1979,2951,871,37" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-255", @@ -8899,34 +7883,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "mag links gehen. Der Verluſt ſeines Vermögens durch die IJnfla1-" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1980,2979,869,36" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "mag links gehen. Der Verluſt ſeines Vermögens durch die IJnfla1-" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1980,2979,869,36" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-256", @@ -8934,34 +7914,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "tion, die ihn nötigte, ſich ſelbſt durchzuſchlagen, mag wohl nebſt" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "tion, die ihn nötigte, ſich ſelbſt durchzuſchlagen, mag wohl nebſt" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1980,3010,868,34" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1980,3010,868,34" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-257", @@ -8969,34 +7945,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "der Bekanntſchaft mit zahlreichen ruſſiſchen und deutſchen Kom-" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1980,3039,870,35" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "der Bekanntſchaft mit zahlreichen ruſſiſchen und deutſchen Kom-" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1980,3039,870,35" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-258", @@ -9004,34 +7976,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "muniſten die Hauptveranlaſſung dazu geweſen ſein. Außerdem" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "muniſten die Hauptveranlaſſung dazu geweſen ſein. Außerdem" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1981,3070,869,34" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1981,3070,869,34" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-259", @@ -9039,34 +8007,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "hat ihn eine Nede des früheren Rektors der Univerſität erbittert," - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1981,3098,869,34" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "hat ihn eine Nede des früheren Rektors der Univerſität erbittert," + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1981,3098,869,34" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-260", @@ -9074,34 +8038,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "der öffentlich erklärte, er wolle keine Werkſtudenten haben. Aus" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "der öffentlich erklärte, er wolle keine Werkſtudenten haben. Aus" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1981,3127,870,36" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1981,3127,870,36" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-261", @@ -9109,34 +8069,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "allen dieſen Gründen hat Theo mit ſeinen früheren Anſchauungen" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1981,3157,870,36" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "allen dieſen Gründen hat Theo mit ſeinen früheren Anſchauungen" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1981,3157,870,36" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-262", @@ -9144,34 +8100,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "gebrochen und ſogar, wie er mir erzählte, in kommuniſti-" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "gebrochen und ſogar, wie er mir erzählte, in kommuniſti-" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1981,3188,871,34" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1981,3188,871,34" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-263", @@ -9179,34 +8131,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "ſchen Kreiſen in Berlin einen Vortrag über E ntwi>klu ng" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1982,3216,870,35" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ſchen Kreiſen in Berlin einen Vortrag über E ntwi>klu ng" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1982,3216,870,35" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-264", @@ -9214,34 +8162,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "des Sozialismus gehalten. Wenn Theo ſeine offizielle An-" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "des Sozialismus gehalten. Wenn Theo ſeine offizielle An-" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1982,3245,871,36" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1982,3245,871,36" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-265", @@ -9249,34 +8193,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "meldung bei der kommuniſtiſchen Partei, Wm ſeine Einſchrei-" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1982,3271,871,43" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "meldung bei der kommuniſtiſchen Partei, Wm ſeine Einſchrei-" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1982,3271,871,43" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-266", @@ -9284,34 +8224,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "bung als Mitglied verſäumt hat, ſo iſt dies wohl hauptſächlieh der" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "bung als Mitglied verſäumt hat, ſo iſt dies wohl hauptſächlieh der" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1982,3306,871,32" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1982,3306,871,32" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-267", @@ -9319,34 +8255,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "Bummelei zuzuſchreiben; daß er fich nicht angemeldet haben ſoll," - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1983,3335,870,31" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Bummelei zuzuſchreiben; daß er fich nicht angemeldet haben ſoll," + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1983,3335,870,31" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-268", @@ -9354,34 +8286,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "wundert mich übrigens." + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "wundert mich übrigens." + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1983,3367,306,29" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1983,3367,306,29" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-269", @@ -9389,34 +8317,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "1922 war Theo mit meiner Zuſtimmung auf Veranlaſſung ſeines" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=2028,3409,827,35" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "1922 war Theo mit meiner Zuſtimmung auf Veranlaſſung ſeines" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=2028,3409,827,35" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-270", @@ -9424,34 +8348,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "ehemaligen Prinzipals (Theo hat vor dem Brot geteilt; er war außerordentlich beliebt und eine" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Stü> Brot geteilt; er war außerordentlich beliebt und eine" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1984,3856,874,33" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1984,3856,874,33" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-285", @@ -9949,34 +8813,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "biedere, allzu gutmütige Seele. Sein Hauptfehler iſt Mangel an" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1983,3887,874,33" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "biedere, allzu gutmütige Seele. Sein Hauptfehler iſt Mangel an" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1983,3887,874,33" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-286", @@ -9984,34 +8844,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "Vorſicht. Im übrigen iſt er eine praktiſche Natur. Mit ſeinem" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Vorſicht. Im übrigen iſt er eine praktiſche Natur. Mit ſeinem" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1984,3916,873,32" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1984,3916,873,32" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-287", @@ -10019,34 +8875,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "mehr wiſſenſchaftlich veranlagten Freunde Kindermann hat er ge-" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1983,3946,873,32" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "mehr wiſſenſchaftlich veranlagten Freunde Kindermann hat er ge-" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1983,3946,873,32" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-288", @@ -10054,34 +8906,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "meinſchaftlich das Neiſeprojekt entworfen, von dem er ſich durch Film-" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "meinſchaftlich das Neiſeprojekt entworfen, von dem er ſich durch Film-" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1984,3974,873,35" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1984,3974,873,35" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-289", @@ -10089,34 +8937,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "aufnahmen günſtige pekuniäre Reſultate verſprach. Hauptgrund aber" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1984,4004,872,33" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "aufnahmen günſtige pekuniäre Reſultate verſprach. Hauptgrund aber" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1984,4004,872,33" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-290", @@ -10124,34 +8968,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "war bei beiden ein ungezügelter Reiſetrieb und Abenteuerluſt." + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "war bei beiden ein ungezügelter Reiſetrieb und Abenteuerluſt." + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1983,4034,874,34" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1983,4034,874,34" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-291", @@ -10159,34 +8999,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "Beiden fehlte die nötige Erfahrung und Kenntnis der Zuſtände" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1983,4063,872,35" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Beiden fehlte die nötige Erfahrung und Kenntnis der Zuſtände" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1983,4063,872,35" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-292", @@ -10194,34 +9030,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "in Rußland." + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "in Rußland." + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1983,4092,152,30" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1983,4092,152,30" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-293", @@ -10229,34 +9061,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "Kap Tſcheljuſkin und das vulkaniſche Kamtſchatka hat ſie be-" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=2025,4137,830,36" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Kap Tſcheljuſkin und das vulkaniſche Kamtſchatka hat ſie be-" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=2025,4137,830,36" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-294", @@ -10264,34 +9092,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "onders angeloc>t. Die Tſcheka hat dieſe Angaben zu der Anklage" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "onders angeloc>t. Die Tſcheka hat dieſe Angaben zu der Anklage" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1993,4168,861,35" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1993,4168,861,35" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-295", @@ -10299,34 +9123,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "benußt, daß ſie Mitglieder der Orgeſch ſeien, die mit Weißgardiſten" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1984,4197,870,36" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "benußt, daß ſie Mitglieder der Orgeſch ſeien, die mit Weißgardiſten" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1984,4197,870,36" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-296", @@ -10334,34 +9154,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "in Verbindung ſtänden. Bekanntlich haben vor einiger Zeit in" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "in Verbindung ſtänden. Bekanntlich haben vor einiger Zeit in" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1983,4226,870,36" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1983,4226,870,36" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-297", @@ -10369,34 +9185,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "Kamtſchatka erbitterte Kämpfe zwiſchen Weißgardiſten und der" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1983,4254,870,37" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Kamtſchatka erbitterte Kämpfe zwiſchen Weißgardiſten und der" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1983,4254,870,37" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-298", @@ -10404,34 +9216,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "Roten Armee ſtatgefunden. Doch davon hatten die beiden harm-" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Roten Armee ſtatgefunden. Doch davon hatten die beiden harm-" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1982,4285,872,36" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1982,4285,872,36" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-299", @@ -10439,34 +9247,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "loſen Studenten gar keine Ahnung. Daß Theo größere Kenntnis" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1983,4311,871,44" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "loſen Studenten gar keine Ahnung. Daß Theo größere Kenntnis" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1983,4311,871,44" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-300", @@ -10474,34 +9278,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "von den Plänen Ditmars gehabt habe als Kindermann iſt Un-" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "von den Plänen Ditmars gehabt habe als Kindermann iſt Un-" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1982,4345,870,36" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1982,4345,870,36" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-301", @@ -10509,34 +9309,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "ſinn. Theo und Ditmar ſtanden, wie Vater Kindermann" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1984,4374,870,35" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ſinn. Theo und Ditmar ſtanden, wie Vater Kindermann" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1984,4374,870,35" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-302", @@ -10544,34 +9340,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "ſchreibt, wie Hund und Kaß. An Ditmars Schuld glaube" + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ſchreibt, wie Hund und Kaß. An Ditmars Schuld glaube" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1984,4398,870,45" } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1984,4398,870,45" - } - } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-303", @@ -10579,34 +9371,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "ich niht. Für die Wahrheit der von mir über Theo gemachten" - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1983,4433,870,39" - } + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "ich niht. Für die Wahrheit der von mir über Theo gemachten" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1983,4433,870,39" } - ] + } }, { "id": "https://iiif.io/api/cookbook/recipe/0068-newspaper/newspaper_issue_1-anno_p1.json-304", @@ -10614,34 +9402,30 @@ "motivation": [ "supplementing" ], - "body": [ - { - "type": "TextualBody", - "format": "text/plain", - "language": "de", - "value": "Angaben ſtehe ich unbedingt ein." - } - ], - "target": [ - { - "type": "SpecificResource", - "source": { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", - "type": "Canvas", - "partOf": [ - { - "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", - "type": "Manifest" - } - ] - }, - "selector": { - "type": "FragmentSelector", - "conformsTo": "http://www.w3.org/TR/media-frags/", - "value": "xywh=1983,4462,423,35" - } - } - ] + "body": { + "type": "TextualBody", + "format": "text/plain", + "language": "de", + "value": "Angaben ſtehe ich unbedingt ein." + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1/canvas/p1", + "type": "Canvas", + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue1.json", + "type": "Manifest" + } + ] + }, + "selector": { + "type": "FragmentSelector", + "conformsTo": "http://www.w3.org/TR/media-frags/", + "value": "xywh=1983,4462,423,35" + } + } } ] } \ No newline at end of file diff --git a/source/presentation/4.0/example/uc03_issue2.json b/source/presentation/4.0/example/uc03_issue2.json index bb38ce809..95caa7534 100644 --- a/source/presentation/4.0/example/uc03_issue2.json +++ b/source/presentation/4.0/example/uc03_issue2.json @@ -31,7 +31,7 @@ "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue2/annotation/p1", "type": "Annotation", "motivation": ["painting"], - "body": [{ + "body": { "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-issue2-p1/full/max/0/default.jpg", "type": "Image", "format": "image/jpeg", @@ -42,8 +42,11 @@ "profile": "level1" } ] - }], - "target": ["https://iiif.io/api/presentation/4.0/example/uc03_issue2/canvas/p1"] + }, + "target": { + "id":"https://iiif.io/api/presentation/4.0/example/uc03_issue2/canvas/p1", + "type":"Canvas" + } } ] } @@ -64,7 +67,7 @@ "id": "https://iiif.io/api/presentation/4.0/example/uc03_issue2/annotation/p2", "type": "Annotation", "motivation": ["painting"], - "body": [{ + "body": { "id": "https://iiif.io/api/image/3.0/example/reference/4ce82cef49fb16798f4c2440307c3d6f-newspaper-issue2-p2/full/max/0/default.jpg", "type": "Image", "format": "image/jpeg", @@ -75,8 +78,11 @@ "profile": "level1" } ] - }], - "target": ["https://iiif.io/api/presentation/4.0/example/uc03_issue2/canvas/p2"] + }, + "target": { + "id":"https://iiif.io/api/presentation/4.0/example/uc03_issue2/canvas/p2", + "type":"Canvas" + } } ] } From e12772a9856aaae602c30ef14418e24ea65828c5 Mon Sep 17 00:00:00 2001 From: Glen Robson Date: Thu, 26 Feb 2026 00:35:52 +0000 Subject: [PATCH 09/19] Adding 3d multiple objects example --- .../4.0/example/uc06_multiple_3d_objects.json | 152 +++++++++++++++++ source/presentation/4.0/index.md | 158 +----------------- 2 files changed, 153 insertions(+), 157 deletions(-) create mode 100644 source/presentation/4.0/example/uc06_multiple_3d_objects.json diff --git a/source/presentation/4.0/example/uc06_multiple_3d_objects.json b/source/presentation/4.0/example/uc06_multiple_3d_objects.json new file mode 100644 index 000000000..494c34fe9 --- /dev/null +++ b/source/presentation/4.0/example/uc06_multiple_3d_objects.json @@ -0,0 +1,152 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/presentation/4.0/example/uc06_multiple_3d_objects.json", + "type": "Manifest", + "label": { "en": [ "Use Case 6: Complex Scene" ] }, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc06/scene/1", + "type": "Scene", + "label": { "en": [ "Chess Game Pieces" ] }, + "interactionMode": [ "hemisphere-orbit" ], + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc06/scene/1/page/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc06/scene/1/anno/1", + "type": "Annotation", + "motivation": [ "painting" ], + "body": { + "id": "https://fixtures.iiif.io/3d/tom_flynn/chess/Pawn_black.glb", + "label": { "en": [ "Pawn 1" ] }, + "type": "Model", + "format": "model/gltf-binary" + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc06/scene/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + ] + } + }, + { + "id": "https://iiif.io/api/presentation/4.0/example/uc06/3d/anno2", + "type": "Annotation", + "motivation": [ "painting" ], + "body": { + "type": "SpecificResource", + "source": { + "id": "https://fixtures.iiif.io/3d/tom_flynn/chess/Pawn_black.glb", + "label": { "en": [ "Pawn 2 tipped over" ] }, + "type": "Model", + "format": "model/gltf-binary" + }, + "transform": [ + { + "type": "RotateTransform", + "x": 0.0, + "y": 0.0, + "z": -90.0 + }, + { + "type": "TranslateTransform", + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + ] + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc06/scene/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 2.0, + "y": 0.0, + "z": 3.0 + } + ] + } + }, + { + "id": "https://iiif.io/api/presentation/4.0/example/uc06/3d/anno3", + "type": "Annotation", + "motivation": [ "painting" ], + "exclude": [ + "Audio", + "Lights" + ], + "body": { + "type": "SpecificResource", + "source": { + "id": "https://fixtures.iiif.io/3d/tom_flynn/chess/Queen_black.glb", + "label": { "en": [ "Queen" ] }, + "type": "Model", + "format": "model/gltf-binary" + }, + "transform": [ + { + "type": "ScaleTransform", + "x": 1.5, + "y": 1.5, + "z": 1.5 + } + ] + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc06/scene/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 1.0, + "y": 0.0, + "z": 2.0 + } + ] + } + }, + { + "id": "https://iiif.io/api/presentation/4.0/example/uc06/3d/anno4", + "type": "Annotation", + "motivation": [ "painting" ], + "body": { + "id": "https://iiif.io/api/presentation/4.0/example/uc06/3d/lights/1", + "type": "ImageBasedLight", + "label": { "en": [ "Image-Based Light" ] }, + "environmentMap": { + "id": "https://iiif.io/api/presentation/4.0/example/uc06/light/3/environment.hdr", + "type": "Image", + "format": "image/vnd.radiance", + "profile": "equirectangular" + } + }, + "target": { + "id": "https://iiif.io/api/presentation/4.0/example/uc06/scene/1", + "type": "Scene" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/source/presentation/4.0/index.md b/source/presentation/4.0/index.md index 739a62233..f5ef0bea8 100644 --- a/source/presentation/4.0/index.md +++ b/source/presentation/4.0/index.md @@ -743,163 +743,7 @@ Properties: [backgroundColor][prezi-40-model-backgroundColor], [lookAt][prezi-40 This example is a Manifest with a single Scene with multiple models painted into the Scene at specific positions with transforms applied. It represents a collection of chess game pieces with multiple pawns and a single queen. The example demonstrates painting multiple models into a Scene, including one Content Resource being painted into a Scene multiple times. Transforms and Point Selectors are used to establish position and scale for Annotations. Some external web resources referenced as Content Resources may include elements such as lights or audio that are undesirable within a Manifest, and the [`exclude`][prezi-40-model-exclude] property is used to prevent these from being rendered. The property [`interactionMode`][prezi-40-model-interactionMode] is used to guide clients in how to best guide or limit user interaction with rendered content. This example also introduces an Image-Based Light Annotation to simulate real-world lighting of the chess game pieces. -```jsonc -{ - "@context": "http://iiif.io/api/presentation/4/context.json", - "id": "https://example.org/iiif/3d/model_origin.json", - "type": "Manifest", - "label": { "en": ["Use Case 6: Complex Scene"] }, - "items": [ - { - "id": "https://example.org/iiif/scene1/page/p1/1", - "type": "Scene", - "label": { "en": ["Chess Game Pieces"] }, - "interactionMode": ["hemisphere-orbit"], - "items": [ - { - "id": "https://example.org/iiif/scene1/page/p1/1", - "type": "AnnotationPage", - "items": [ - { - "id": "https://example.org/iiif/3d/anno1", - "type": "Annotation", - "motivation": ["painting"], - "body": - { - "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/chess/pawn.glb", - "label": { "en": ["Pawn 1"] }, - "type": "Model", - "format": "model/gltf-binary" - }, - "target": - { - "type": "SpecificResource", - "source": { - "id": "https://example.org/iiif/scene1/page/p1/1", - "type": "Scene" - }, - "selector": [ - { - "type": "PointSelector", - "x": 1.0, - "y": 0.0, - "z": 0.0 - } - ] - } - }, - { - "id": "https://example.org/iiif/3d/anno2", - "type": "Annotation", - "motivation": ["painting"], - "body": - { - "type": "SpecificResource", - "source": { - "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/chess/pawn.glb", - "label": { "en": ["Pawn 2 tipped over"] }, - "type": "Model", - "format": "model/gltf-binary" - }, - "transform": [ - { - "type": "RotateTransform", - "x": 0.0, - "y": 0.0, - "z": -90.0 - }, - { - "type": "TranslateTransform", - "x": 0.0, - "y": 1.0, - "z": 0.0 - } - ] - }, - "target": - { - "type": "SpecificResource", - "source": { - "id": "https://example.org/iiif/scene1/page/p1/1", - "type": "Scene" - }, - "selector": [ - { - "type": "PointSelector", - "x": 2.0, - "y": 0.0, - "z": 3.0 - } - ] - } - }, - { - "id": "https://example.org/iiif/3d/anno3", - "type": "Annotation", - "motivation": ["painting"], - "exclude": ["Audio", "Lights"], - "body": - { - "type": "SpecificResource", - "source": { - "id": "https://raw.githubusercontent.com/IIIF/3d/main/assets/chess/queen.glb", - "label": { "en": ["Queen"] }, - "type": "Model", - "format": "model/gltf-binary" - }, - "transform": [ - { - "type": "ScaleTransform", - "x": 1.5, - "y": 1.5, - "z": 1.5 - } - ] - }, - "target": - { - "type": "SpecificResource", - "source": { - "id": "https://example.org/iiif/scene1/page/p1/1", - "type": "Scene" - }, - "selector": [ - { - "type": "PointSelector", - "x": 1.0, - "y": 0.0, - "z": 2.0 - } - ] - } - }, - { - "id": "https://example.org/iiif/3d/anno4", - "type": "Annotation", - "motivation": ["painting"], - "body": { - "id": "https://example.org/iiif/3d/lights/1", - "type": "ImageBasedLight", - "label": {"en": ["Image-Based Light"]}, - "environmentMap": { - "id": "https://example.org/iiif/light/3/environment.hdr", - "type": "Image", - "format": "image/vnd.radiance", - "profile": "equirectangular" - } - }, - "target": { - "id": "https://example.org/iiif/scene1/page/p1/1", - "type": "Scene" - } - } - ] - } - ] - } - ] -} -``` +{% include code_example.html src="uc06_multiple_3d_objects.json" %} > **Key Points** From 43e5cf292b034321567a39b1279a76e0441e899b Mon Sep 17 00:00:00 2001 From: Glen Robson Date: Thu, 26 Feb 2026 00:36:16 +0000 Subject: [PATCH 10/19] Fixing type --- source/presentation/4.0/example/02_timeline.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/presentation/4.0/example/02_timeline.json b/source/presentation/4.0/example/02_timeline.json index 1b275d358..01d9db06e 100644 --- a/source/presentation/4.0/example/02_timeline.json +++ b/source/presentation/4.0/example/02_timeline.json @@ -23,7 +23,7 @@ "motivation": ["painting"], "body": { "id": "https://fixtures.iiif.io/audio/indiana/mahler-symphony-3/CD1/medium/128Kbps.mp4", - "type": "Sound", + "type": "Audio", "format": "audio/mp4", "duration": 1985.024 }, From 8705080db5df0955d5be8f3dc21f6b3023ddb448 Mon Sep 17 00:00:00 2001 From: Glen Robson Date: Thu, 26 Feb 2026 00:45:44 +0000 Subject: [PATCH 11/19] Fixing name --- .../presentation/4.0/example/uc06_multiple_3d_objects.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/presentation/4.0/example/uc06_multiple_3d_objects.json b/source/presentation/4.0/example/uc06_multiple_3d_objects.json index 494c34fe9..529e775c1 100644 --- a/source/presentation/4.0/example/uc06_multiple_3d_objects.json +++ b/source/presentation/4.0/example/uc06_multiple_3d_objects.json @@ -19,7 +19,7 @@ "type": "Annotation", "motivation": [ "painting" ], "body": { - "id": "https://fixtures.iiif.io/3d/tom_flynn/chess/Pawn_black.glb", + "id": "https://fixtures.iiif.io/3d/thomas_flynn/chess/Pawn_black.glb", "label": { "en": [ "Pawn 1" ] }, "type": "Model", "format": "model/gltf-binary" @@ -47,7 +47,7 @@ "body": { "type": "SpecificResource", "source": { - "id": "https://fixtures.iiif.io/3d/tom_flynn/chess/Pawn_black.glb", + "id": "https://fixtures.iiif.io/3d/thomas_flynn/chess/Pawn_black.glb", "label": { "en": [ "Pawn 2 tipped over" ] }, "type": "Model", "format": "model/gltf-binary" @@ -94,7 +94,7 @@ "body": { "type": "SpecificResource", "source": { - "id": "https://fixtures.iiif.io/3d/tom_flynn/chess/Queen_black.glb", + "id": "https://fixtures.iiif.io/3d/thomas_flynn/chess/Queen_black.glb", "label": { "en": [ "Queen" ] }, "type": "Model", "format": "model/gltf-binary" From c712648c5e2f96f3bc84d53f0b59026fbc282b49 Mon Sep 17 00:00:00 2001 From: Glen Robson Date: Tue, 3 Mar 2026 00:37:57 +0000 Subject: [PATCH 12/19] Adding Audio with 3d --- .../4.0/example/uc06_audio_with_3d.json | 167 ++++++++++++++++++ source/presentation/4.0/index.md | 147 +-------------- 2 files changed, 168 insertions(+), 146 deletions(-) create mode 100644 source/presentation/4.0/example/uc06_audio_with_3d.json diff --git a/source/presentation/4.0/example/uc06_audio_with_3d.json b/source/presentation/4.0/example/uc06_audio_with_3d.json new file mode 100644 index 000000000..5ddc8d969 --- /dev/null +++ b/source/presentation/4.0/example/uc06_audio_with_3d.json @@ -0,0 +1,167 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/presentation/4.0/example/uc06_audio_with_3d.json", + "type": "Manifest", + "label": { + "en": [ + "Use Case 7: Scene with Audio" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc06/scene/1", + "type": "Scene", + "label": { + "en": [ + "Positional Audio Symphony Hall Experience" + ] + }, + "duration": 60, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc06/scene/1/page/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc06/3d/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://iiif.io/api/presentation/4.0/example/uc06/audio/1", + "type": "AmbientAudio", + "source": { + "id": "https://fixtures.iiif.io/audio/bbc/bbcrewind/bbc_rewind_crowds_60s.mp3", + "type": "Audio", + "format": "audio/mp3" + }, + "volume": { + "id": "https://iiif.io/api/presentation/4.0/example/uc06/quantity/1", + "type": "Quantity", + "unit": "relative", + "quantityValue": 0.1 + } + }, + "target": { + "id": "https://iiif.io/api/presentation/4.0/example/uc06/scene/1", + "type": "Scene" + } + }, + { + "id": "https://iiif.io/api/presentation/4.0/example/uc06/3d/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "timeMode": "trim", + "body": { + "id": "https://iiif.io/api/presentation/4.0/example/uc06/audio/2", + "type": "PointAudio", + "source": { + "id": "https://fixtures.iiif.io/audio/mock/GarageBand/orchestra_percussion_120s.mp3", + "type": "Audio", + "format": "audio/mp3", + "duration": 120.835 + }, + "volume": { + "id": "https://iiif.io/api/presentation/4.0/example/uc06/quantity/2", + "type": "Quantity", + "unit": "relative", + "quantityValue": 0.2 + } + }, + "target": { + "id": "https://iiif.io/api/presentation/4.0/example/uc06/selectors/anno2", + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc06/scene/1", + "type": "Scene" + }, + "selector": [ + { + "id": "https://example.org/uuid/9fbd580b-895b-41b9-974a-1553329037f2", + "type": "PointSelector", + "x": -3.0, + "y": 0.0, + "z": -2.0, + "refinedBy": { + "id": "https://example.org/uuid/3d0d097b-2b37-4a15-b6a5-506e417d5115", + "type": "FragmentSelector", + "value": "t=0,30" + } + } + ] + } + }, + { + "id": "https://iiif.io/api/presentation/4.0/example/uc06/3d/anno3", + "type": "Annotation", + "motivation": [ + "painting" + ], + "timeMode": "loop", + "body": { + "id": "https://iiif.io/api/presentation/4.0/example/uc06/audio/3", + "type": "SpotAudio", + "source": { + "id": "https://fixtures.iiif.io/audio/mock/GarageBand/orchestra_tuba_10s.mp3", + "type": "Audio", + "format": "audio/mp3", + "duration": 10.0 + }, + "angle": 45.0, + "volume": { + "id": "https://iiif.io/api/presentation/4.0/example/uc06/quantity/3", + "type": "Quantity", + "unit": "relative", + "quantityValue": 0.3 + }, + "lookAt": { + "id":"https://iiif.io/api/presentation/4.0/example/uc06/scene1", + "type": "Scene" + } + }, + "target": { + "id": "https://iiif.io/api/presentation/4.0/example/uc06/scene/1#3,0,-2&t=30,60", + "type": "Scene" + } + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc06/3d/page/commenting", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc06/3d/commenting", + "type": "Annotation", + "motivation": [ + "commenting" + ], + "body": { + "type": "TextualBody", + "value": "This is the point when the percussion stops playing and the tuba begins playing." + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc06/scene/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "instant": 30.0 + } + ] + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/source/presentation/4.0/index.md b/source/presentation/4.0/index.md index f5ef0bea8..894087eaa 100644 --- a/source/presentation/4.0/index.md +++ b/source/presentation/4.0/index.md @@ -780,152 +780,7 @@ An Annotation may target a specific point in time using a PointSelector's [`inst In this example, the audio content resources have durations that do not match the Scene's duration. The [`timeMode` property](https://iiif.io/api/presentation/3.0/#timemode) is used to indicate the desired behavior when the duration of the content resource that is not equal to the temporal region targeted by the annotation. -```jsonc -{ - "@context": "http://iiif.io/api/presentation/4/context.json", - "id": "https://example.org/iiif/3d/model_origin.json", - "type": "Manifest", - "label": { "en": ["Use Case 7: Scene with Audio"] }, - "items": [ - { - "id": "https://example.org/iiif/scene1/page/p1/1", - "type": "Scene", - "label": { "en": ["Positional Audio Symphony Hall Experience"] }, - "duration": 60, - "items": [ - { - "id": "https://example.org/iiif/3d/anno1", - "type": "Annotation", - "motivation": ["painting"], - "body": - { - "id": "https://example.org/iiif/audio/1", - "type": "AmbientAudio", - "source": { - "id": "https://example.org/iiif/assets/symphony_hall_ambience.mp3", - "type": "Audio", - "format": "audio/mp3" - }, - "volume": { - "id": "https://example.org/iiif/quantity/1", - "type": "Quantity", - "unit": "relative", - "quantityValue": 0.1 - } - }, - "target": - { - "id": "https://example.org/iiif/scene1", - "type": "Scene" - } - }, - { - "id": "https://example.org/iiif/3d/anno2", - "type": "Annotation", - "motivation": ["painting"], - "timeMode": "trim", - "body": - { - "id": "https://example.org/iiif/audio/2", - "type": "PointAudio", - "source": { - "id": "https://example.org/iiif/assets/orchestra_percussion_120s.mp3", - "type": "Audio", - "format": "audio/mp3", - "duration": 120.0 - }, - "volume": { - "id": "https://example.org/iiif/quantity/2", - "type": "Quantity", - "unit": "relative", - "quantityValue": 0.2 - } - }, - "target": - { - "id": "https://example.org/iiif/selectors/anno2", - "type": "SpecificResource", - "source": { - "id": "https://example.org/iiif/scene1", - "type": "Scene" - }, - "selector": [ - { - "id": "https://example.org/uuid/9fbd580b-895b-41b9-974a-1553329037f2", - "type": "PointSelector", - "x": -3.0, - "y": 0.0, - "z": -2.0, - "refinedBy": { - "id": "https://example.org/uuid/3d0d097b-2b37-4a15-b6a5-506e417d5115", - "type": "FragmentSelector", - "value": "t=0,30" - } - } - ] - } - }, - { - "id": "https://example.org/iiif/3d/anno3", - "type": "Annotation", - "motivation": ["painting"], - "timeMode": "loop", - "body": - { - "id": "https://example.org/iiif/audio/3", - "type": "SpotAudio", - "source": { - "id": "https://example.org/iiif/assets/orchestra_tuba_10s.mp3", - "type": "Audio", - "format": "audio/mp3", - "duration": 10.0 - }, - "angle": 45.0, - "volume": { - "id": "https://example.org/iiif/quantity/3", - "type": "Quantity", - "unit": "relative", - "quantityValue": 0.3 - }, - "lookAt": "https://example.org/iiif/scene1" - }, - "target": - { - "id": "https://example.org/iiif/scene1#xyz=3,0,-2&t=30,60", - "type": "Scene" - } - } - ], - "annotations": [ - { - "id": "https://example.org/iiif/3d/commenting", - "type": "Annotation", - "motivation": ["commenting"], - "body": - { - "type": "TextualBody", - "value": "This is the point when the percussion stops playing and the tuba begins playing." - }, - "target": - { - "type": "SpecificResource", - "source": { - "id": "https://example.org/iiif/scene1", - "type": "Scene" - }, - "selector": [ - { - "type": "PointSelector", - "instant": 30.0 - } - ] - } - } - ] - } - ] -} -``` +{% include code_example.html src="uc06_audio_with_3d.json" %} > **Key Points** From 6b276096f9ca2dd619aa9de6772158f2e283f082 Mon Sep 17 00:00:00 2001 From: Glen Robson Date: Wed, 4 Mar 2026 00:01:17 +0000 Subject: [PATCH 13/19] Adding uc07_image_composite.json --- .../4.0/example/uc07_image_composite.json | 108 ++++++++++++++++++ source/presentation/4.0/index.md | 102 +---------------- 2 files changed, 109 insertions(+), 101 deletions(-) create mode 100644 source/presentation/4.0/example/uc07_image_composite.json diff --git a/source/presentation/4.0/example/uc07_image_composite.json b/source/presentation/4.0/example/uc07_image_composite.json new file mode 100644 index 000000000..52218fcc7 --- /dev/null +++ b/source/presentation/4.0/example/uc07_image_composite.json @@ -0,0 +1,108 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/presentation/4.0/example/uc07_image_composite.json", + "type": "Manifest", + "label": { + "en": [ + "Use case 7: Composite of two canvases" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc07/canvas/1", + "type": "Canvas", + "width": 600, + "height": 300, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc07/canvas/1/page/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc07/anno1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://iiif.io/api/presentation/4.0/example/uc07/canvas/2", + "type": "Canvas", + "width": 300, + "height": 300, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc07/canvas/2/page/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc07/anno2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://fixtures.iiif.io/images/Glen/generated/canvas_1.jpg", + "type": "Image", + "format": "image/jpeg" + }, + "target": { + "id": "https://iiif.io/api/presentation/4.0/example/uc07/canvas/2", + "type": "Canvas" + } + } + ] + } + ] + }, + "target": { + "id": "https://iiif.io/api/presentation/4.0/example/uc07/canvas/1#xywh=0,0,300,300", + "type": "Canvas" + } + }, + { + "id": "https://iiif.io/api/presentation/4.0/example/uc07/anno3", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://iiif.io/api/presentation/4.0/example/uc07/canvas/3", + "type": "Canvas", + "width": 300, + "height": 300, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc07/canvas/3/page/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc07/anno4", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://fixtures.iiif.io/images/Glen/generated/canvas_2.jpg", + "type": "Image", + "format": "image/jpeg" + }, + "target": { + "id": "https://iiif.io/api/presentation/4.0/example/uc07/canvas/3", + "type": "Canvas" + } + } + ] + } + ] + }, + "target": { + "id": "https://iiif.io/api/presentation/4.0/example/uc07/canvas/1#xywh=300,0,300,300", + "type": "Canvas" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/source/presentation/4.0/index.md b/source/presentation/4.0/index.md index 894087eaa..e44eda790 100644 --- a/source/presentation/4.0/index.md +++ b/source/presentation/4.0/index.md @@ -808,107 +808,7 @@ A Container can be painted into another Container as an Annotation with [`motiva This example is a Manifest with a Canvas that represents two images displayed side by side. However, instead of painting the images directly as Annotations, each image is painted on to a separate Canvas, and each Canvas is painted into the Manifest Canvas. A more likely practical application of this example would be where the image Canvases have been created previously and are hosted separately from the Manifest's composite-image Canvas. -```jsonc -{ - "@context": "http://iiif.io/api/presentation/4/context.json", - "id": "https://example.org/iiif/presentation/examples/manifest-composite-two-canvases.json", - "type": "Manifest", - "label": { - "en": [ "Use case 7: Composite of two canvases" ] - }, - "items": [ - { - "id": "https://example.org/iiif/presentation/examples/manifest-composite-two-canvases/canvas/c1", - "type": "Canvas", - "width": 600, - "height": 300, - "items": [ - { - "id": "https://example.org/iiif/presentation/examples/manifest-composite-two-canvases/page/p1", - "type": "AnnotationPage", - "items": [ - { - "id": "https://example.org/iiif/presentation/examples/manifest-composite-two-canvases/annotation/anno1", - "type": "Annotation", - "motivation": [ "painting" ], - "body": { - "id": "https://example.org/iiif/presentation/examples/manifest-composite-two-canvases/canvas/c2", - "type": "Canvas", - "width": 300, - "height": 300, - "items": [ - { - "id": "https://example.org/iiif/presentation/examples/manifest-composite-two-canvases/page/p2", - "type": "AnnotationPage", - "items": [ - { - "id": "https://example.org/iiif/presentation/examples/manifest-composite-two-canvases/annotation/anno2", - "type": "Annotation", - "motivation": [ "painting" ], - "body": { - "id": "https://example.org/iiif/presentation/examples/manifest-composite-two-canvases/images/image1.jpg", - "type": "Image", - "format": "image/jpeg" - }, - "target": - { - "id": "https://example.org/iiif/presentation/examples/manifest-composite-two-canvases/canvas/c2", - "type": "Canvas" - } - }, - ] - } - ] - }, - "target": { - "id": "https://example.org/iiif/presentation/examples/manifest-composite-two-canvases/canvas/c1#xywh=0,0,300,300", - "type": "Canvas" - } - }, - { - "id": "https://example.org/iiif/presentation/examples/manifest-composite-two-canvases/annotation/anno2", - "type": "Annotation", - "motivation": [ "painting" ], - "body": { - "id": "https://example.org/iiif/presentation/examples/manifest-composite-two-canvases/canvas/c3", - "type": "Canvas", - "width": 300, - "height": 300, - "items": [ - { - "id": "https://example.org/iiif/presentation/examples/manifest-composite-two-canvases/page/p3", - "type": "AnnotationPage", - "items": [ - { - "id": "https://example.org/iiif/presentation/examples/manifest-composite-two-canvases/annotation/anno3", - "type": "Annotation", - "motivation": [ "painting" ], - "body": { - "id": "https://example.org/iiif/presentation/examples/manifest-composite-two-canvases/images/image2.jpg", - "type": "Image", - "format": "image/jpeg" - }, - "target": { - "id": "https://example.org/iiif/presentation/examples/manifest-composite-two-canvases/canvas/c3", - "type": "Canvas" - } - }, - ] - } - ] - }, - "target": { - "id": "https://example.org/iiif/presentation/examples/manifest-composite-two-canvases/canvas/c1#xywh=300,0,300,300", - "type": "Canvas" - } - } - ] - } - ] - } - ] -} -``` +{% include code_example.html src="uc07_image_composite.json" %} > **Key Points** From dc7c910f4ff9af1bd8cbce87bc01887cc1598a04 Mon Sep 17 00:00:00 2001 From: Glen Robson Date: Thu, 5 Mar 2026 00:22:23 +0000 Subject: [PATCH 14/19] Adding audio timemode example --- .../4.0/example/uc07_duration_composite.json | 64 +++++ source/presentation/4.0/index.md | 253 +----------------- 2 files changed, 65 insertions(+), 252 deletions(-) create mode 100644 source/presentation/4.0/example/uc07_duration_composite.json diff --git a/source/presentation/4.0/example/uc07_duration_composite.json b/source/presentation/4.0/example/uc07_duration_composite.json new file mode 100644 index 000000000..2e44a2554 --- /dev/null +++ b/source/presentation/4.0/example/uc07_duration_composite.json @@ -0,0 +1,64 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/presentation/4.0/example/uc07_duration_composite.json", + "type": "Manifest", + "label": { "en": [ "Use case 7: Audio demonstrating timeMode" ] }, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc07_audio/canvas/1", + "type": "Canvas", + "label": { "en": [ "Side A: 99 Luftballons - 10min duration" ] }, + "width": 100, + "height": 100, + "duration": 36000, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc07_audio/canvas/1/page/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc07_audio/annotation/1", + "type": "Annotation", + "motivation": [ "painting" ], + "timeMode": "loop", + "body": { + "id": "https://iiif.io/api/presentation/4.0/example/uc07_audio/timeline/1", + "type": "Timeline", + "label": { "en": [ "Side A: 99 Luftballons" ] }, + "duration": 98.25, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc07_audio/track/tr1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc07_audio/annotation/2", + "type": "Annotation", + "motivation": [ "painting" ], + "body": { + "id": "https://fixtures.iiif.io/audio/mock/99_luftbaloons/99_luftballons.mp4", + "type": "Audio", + "duration": 98.25, + "format": "audio/mp4", + "language": [ "de" ] + }, + "target": { + "id": "https://iiif.io/api/presentation/4.0/example/uc07_audio/timeline/1", + "type": "Timeline" + } + } + ] + } + ] + }, + "target": { + "id": "https://iiif.io/api/presentation/4.0/example/uc07_audio/canvas/1", + "type": "Canvas" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/source/presentation/4.0/index.md b/source/presentation/4.0/index.md index e44eda790..efe5f6c64 100644 --- a/source/presentation/4.0/index.md +++ b/source/presentation/4.0/index.md @@ -211,43 +211,7 @@ A Container that represents a bounded, two-dimensional space, optionally with a Canvases have two additional required properties: [`height`][prezi-40-model-height] and [`width`][prezi-40-model-width], which give the spatial extent as integers. Canvases may also have the [`duration`][prezi-40-model-duration] property in the same manner as Timelines. -<<<<<<< HEAD {% include code_example.html src="03_canvas.json" from=11 to=39 %} -======= -```json -{ - "id": "https://example.org/iiif/presentation/examples/manifest-with-containers/canvas", - "type": "Canvas", - "width": 12000, - "height": 9000, - "items": [ - { - "id": "https://example.org/iiif/presentation/examples/manifest-with-containers/page/p2", - "type": "AnnotationPage", - "items": [ - { - "id": "https://example.org/iiif/presentation/examples/manifest-with-containers/annotation/c1", - "type": "Annotation", - "motivation": ["painting"], - "body": - { - "id": "https://iiif.io/api/presentation/example-content-resources/image/painting.jpg", - "type": "Image", - "format": "image/jpeg", - "width": 4000, - "height": 3000 - }, - "target": { - "id": "https://example.org/iiif/presentation/examples/manifest-with-containers/canvas", - "type": "Canvas" - } - } - ] - } - ] -} -``` ->>>>>>> prezi-4 ### Scene @@ -255,39 +219,7 @@ A Container that represents a boundless three-dimensional space, optionally with Scenes may also have the [`duration`][prezi-40-model-duration] property in the same manner as Timelines. -<<<<<<< HEAD {% include code_example.html src="04_scene.json" from=16 to=49 %} -======= -```json -{ - "id": "https://example.org/iiif/presentation/examples/manifest-with-containers/scene", - "type": "Scene", - "items": [ - { - "id": "https://example.org/iiif/presentation/examples/manifest-with-containers/page/p3", - "type": "AnnotationPage", - "items": [ - { - "id": "https://example.org/iiif/presentation/examples/manifest-with-containers/annotation/s1", - "type": "Annotation", - "motivation": ["painting"], - "body": - { - "id": "https://iiif.io/api/presentation/example-content-resources/models/astronaut.glb", - "type": "Model", - "format": "model/gltf-binary" - }, - "target": { - "id": "https://example.org/iiif/presentation/examples/manifest-with-containers/scene", - "type": "Scene" - } - } - ] - } - ] -} -``` ->>>>>>> prezi-4 Scenes can have time-based and image content in them as well as 3D content. See model for how to do this. @@ -330,31 +262,9 @@ Parts of resources on the Web can be identified using URIs with a fragment compo There are different types of fragment based on the format of the resource. The most commonly used type in IIIF is the W3C's Media Fragments specification, as it can define a temporal and 2D spatial region. -<<<<<<< HEAD {% include code_example.html src="05_fragment.json" from=58 to=72 %} -======= -```json -{ - "id": "https://example.org/iiif/presentation/examples/manifest-with-containers/comments/c1", - "type": "Annotation", - "motivation": ["commenting"], - "body": - { - "id": "https://example.org/iiif/presentation/examples/manifest-with-containers/bodies/koto-body", - "type": "TextualBody", - "value": "Koto with a cover being carried", - "language": "en", - "format": "text/plain" - }, - "target": { - "id": "https://example.org/iiif/presentation/examples/manifest-with-containers/canvas#xywh=6050,3220,925,1250", - "type": "Canvas" - } -} -``` ->>>>>>> prezi-4 Here the Canvas [`id`][prezi-40-model-id] from the earlier example is still the [`target`][prezi-40-model-target] of an Annotation, but it has been qualified to a specific region of that Canvas by a URI fragment `#xywh=6050,3220,925,1250`. Note that the x, y, w, and h are in the Canvas coordinate space, not the image pixel dimensions space. This annotation has no knowledge of or dependency on the particular image we painted onto the Canvas; we could replace that image with one of a different, higher resolution without affecting this annotation or the region of the Canvas it targets. @@ -369,39 +279,7 @@ The required properties of Specific Resources are [`id`][prezi-40-model-id], [`t The fragment example above can be expressed using a Specific Resource: -<<<<<<< HEAD {% include code_example.html src="06_specific_resource.json" from=58 to=86 %} -======= -```json -{ - "id": "https://example.org/iiif/presentation/examples/manifest-with-containers/comments/c1", - "type": "Annotation", - "motivation": ["commenting"], - "body": - { - "id": "https://example.org/iiif/presentation/examples/manifest-with-containers/bodies/koto-body", - "type": "TextualBody", - "value": "Koto with a cover being carried", - "language": "en", - "format": "text/plain" - }, - "target": - { - "id": "https://example.org/iiif/presentation/examples/manifest-with-containers/resources/koto-sr", - "type": "SpecificResource", - "source": { - "id": "https://example.org/iiif/presentation/examples/manifest-with-containers/canvas", - "type": "Canvas" - }, - "selector": { - "id": "https://example.org/iiif/presentation/examples/manifest-with-containers/selectors/koto-selector", - "type": "FragmentSelector", - "value": "xywh=6050,3220,925,1250" - } - } -} -``` ->>>>>>> prezi-4 ## Navigational Resources @@ -431,121 +309,11 @@ Ranges may include Containers, parts of Containers via Specific Resources or fra This example is a Manifest with one Canvas, representing an artwork. The content resource, a JPEG image of the artwork, is associated with the Canvas via a Painting Annotation. -<<<<<<< HEAD The unit integer coordinates of the Canvas (6000 x 3813) are not the same as the pixel dimensions of the JPEG image (2000 x 1271), but they are proportional---the Canvas has a 4:3 landscape aspect ratio, and so does the JPEG image.The [`target`][prezi-40-model-target] property of the Annotation is the Canvas [`id`][prezi-40-model-id], unqualified by any particular region; this is taken to mean the content (the image) should fill the Canvas completely. As the Canvas and the image are the same aspect ratio, no distortion will occur. This approach allows the current image to be replaced by a higher resolution image in future, on the same Canvas. The Canvas dimensions establish a coordinate system for _painting annotations_ and other kinds of annotation that link content with the Canvas; they are not pixels of images. The example demonstrates the use of the common descriptive properties [`label`][prezi-40-model-label] for the title of the artwork, [`metadata`][prezi-40-model-metadata] for additional information to display to the user, [`summary`][prezi-40-model-summary] for a brief description of the artwork, [`rights`][prezi-40-model-rights] to assert a rights statement or license from a controlled vocabulary, [`homepage`][prezi-40-model-homepage] to link to the artwork's specific web page, [`thumbnail`][prezi-40-model-thumbnail] to provide a small image to stand for the Manifest, [`provider`][prezi-40-model-provider] to give information about the publisher of the Manifest, and finally, [`service`][prezi-40-model-service] to specify a IIIF Image API service that provides features such as deep zooming, derivative generation, image fragment referencing, rotation, and more. {% include code_example.html src="uc01_artwork.json" %} -======= -The unit integer coordinates of the Canvas (12000 x 9000) are not the same as the pixel dimensions of the JPEG image (4000 x 3000), but they are proportional---the Canvas has a 4:3 landscape aspect ratio, and so does the JPEG image. The [`target`][prezi-40-model-target] property of the Annotation is the Canvas [`id`][prezi-40-model-id], unqualified by any particular region; this is taken to mean the content (the image) should fill the Canvas completely. As the Canvas and the image are the same aspect ratio, no distortion will occur. This approach allows the current image to be replaced by a higher resolution image in future, on the same Canvas. The Canvas dimensions establish a coordinate system for _painting annotations_ and other kinds of annotation that link content with the Canvas; they are not pixels of images. - -The example demonstrates the use of the common descriptive properties [`label`][prezi-40-model-label] for the title of the artwork, [`metadata`][prezi-40-model-metadata] for additional information to display to the user, [`summary`][prezi-40-model-summary] for a brief description of the artwork, [`rights`][prezi-40-model-rights] to assert a rights statement or license from a controlled vocabulary, [`homepage`][prezi-40-model-homepage] to link to the artwork's specific web page, [`thumbnail`][prezi-40-model-thumbnail] to provide a small image to stand for the Manifest, [`provider`][prezi-40-model-provider] to give information about the publisher of the Manifest, and finally, [`service`][prezi-40-model-service] to specify a IIIF Image API service that provides features such as deep zooming, derivative generation, image fragment referencing, rotation, and more. - -```jsonc -{ - "@context": "http://iiif.io/api/presentation/4/context.json", - "id": "https://iiif.io/api/cookbook/recipe/0001-mvm-image/manifest.json", - "type": "Manifest", - "label": { "en": ["Use case 1: Artwork"] }, - "metadata": [ - { - "label": { "en": ["Artist"] }, - "value": { "en": ["Anne Artist"] } - }, - { - "label": { "en": ["Date"] }, - "value": { "en": ["c. 1800"] } - } - ], - "summary": { "en": ["A longer piece of text to be shown when the metadata is not."] }, - "rights": "http://rightsstatements.org/vocab/NoC-NC/1.0/", - "homepage": [ - { - "id": "https://example.org/works/artwork37", - "type": "Text", - "format": "text/html", - "label": { "en": ["Homepage for artwork37"] } - } - ], - "thumbnail": [ - { - "id": "https://example.org/works/artwork37/thumbnail.jpg", - "type": "Image", - "format": "image/jpeg", - "width": 100, - "height": 150 - } - ], - "provider": [ - { - "id": "https://example.org/about", - "type": "Agent", - "label": { "en": ["Example Organization"] }, - "homepage": [ - { - "id": "https://example.org/", - "type": "Text", - "label": { "en": ["Example Organization Homepage"] }, - "format": "text/html" - } - ], - "logo": [ - { - "id": "https://example.org/images/logo.png", - "type": "Image", - "format": "image/png", - "height": 100, - "width": 120 - } - ] - } - ], - "items": [ - { - "id": "https://example.org/iiif/presentation/examples/manifest-with-containers/canvas", - "type": "Canvas", - "width": 12000, - "height": 9000, - "items": [ - { - "id": "https://example.org/iiif/presentation/examples/manifest-with-containers/page/p2", - "type": "AnnotationPage", - "items": [ - { - "id": "https://example.org/iiif/presentation/examples/manifest-with-containers/annotation/c1", - "type": "Annotation", - "motivation": ["painting"], - "body": - { - "id": "https://iiif.io/api/presentation/example/image/painting/full/max/0/default.jpg", - "type": "Image", - "format": "image/jpeg", - "width": 4000, - "height": 3000, - "service": [ - { - "id": "https://iiif.io/api/presentation/example/image/painting", - "profile": "level1", - "type": "ImageService3" - // etc - } - ] - }, - "target": { - "id": "https://example.org/iiif/presentation/examples/manifest-with-containers/canvas", - "type": "Canvas" - } - } - ] - } - ] - } - ] -} -``` - ->>>>>>> prezi-4 > **Key Points** @@ -820,26 +588,7 @@ This example is a Manifest with a Canvas that represents two images displayed si A Timeline, Canvas, or Scene with [`duration`][prezi-40-model-duration] can only be painted into a Container that also has [`duration`][prezi-40-model-duration]. It is possible to associate a Container with [`duration`][prezi-40-model-duration] with a Container that does not have [`duration`][prezi-40-model-duration] as the content of a `commenting` annotation rather than painting it into the Container. If a Container with [`duration`][prezi-40-model-duration] has a shorter or longer [`duration`][prezi-40-model-duration] than the Container into which it is to be painted, the [`timeMode`][prezi-40-model-timeMode] property can be used to instruct clients how to resolve the mismatch. -```jsonc -{ - "id": "https://example.org/iiif/presentation/examples/nesting/anno1", - "type": "Annotation", - "motivation": ["painting"], - "timeMode": "loop", - "body": - { - "id": "https://example.org/iiif/presentation/examples/nesting/timeline/t1", - "type": "Timeline", - "label": { "en": ["Side A: 99 Luftballons"] }, - "duration": 231 - }, - "target": { - "id": "https://example.org/iiif/presentation/examples/nesting/canvas-10minute-duration", - "type": "Canvas" - } -} -``` - +{% include code_example.html src="uc07_duration_composite.json" from=19 to=58 %} ## Painting a Canvas or Timeline into a Scene From aca6965bb1a15ccd8ecae6dcc4649b62912bf42e Mon Sep 17 00:00:00 2001 From: Glen Robson Date: Mon, 9 Mar 2026 14:58:39 +0000 Subject: [PATCH 15/19] Adding uc07_canvas_into_scene --- .../4.0/example/uc07_canvas_into_scene.json | 89 +++++++++++++++++++ source/presentation/4.0/index.md | 43 +-------- 2 files changed, 90 insertions(+), 42 deletions(-) create mode 100644 source/presentation/4.0/example/uc07_canvas_into_scene.json diff --git a/source/presentation/4.0/example/uc07_canvas_into_scene.json b/source/presentation/4.0/example/uc07_canvas_into_scene.json new file mode 100644 index 000000000..323cdc4fb --- /dev/null +++ b/source/presentation/4.0/example/uc07_canvas_into_scene.json @@ -0,0 +1,89 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/presentation/4.0/example/uc07_canvas_into_scene.json", + "type": "Manifest", + "label": { "en": [ "Use Case 7: Canvas into Scene" ] }, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc07/scene/1", + "type": "Scene", + "label": { "en": [ "Positioning a canvas into a scene" ] }, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc07/scene/1/page/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc07/anno1", + "type": "Annotation", + "motivation": [ "painting" ], + "body": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc0/canvas/1", + "type": "Canvas", + "height": 3966, + "width": 8800, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/05/page/p1/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/05/annotation/p0001-image", + "type": "Annotation", + "motivation": [ "painting" ], + "body": { + "id": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 3966, + "width": 8800, + "service": [ + { + "id": "https://iiif.io/api/image/3.0/example/reference/36ca0a3370db128ec984b33d71a1543d-100320001004", + "profile": "level1", + "type": "ImageService3" + } + ] + }, + "target": { + "id": "https://iiif.io/api/presentation/4.0/example/uc0/canvas/1", + "type": "Canvas" + } + } + ] + } + ] + }, + "transform": [ + { + "type": "ScaleTransform", + "x": 2.0, + "y": 2.0, + "z": -1.0 + } + ] + }, + "target": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc07/scene/1", + "type": "Scene" + }, + "selector": [ + { + "type": "PointSelector", + "x": 4.0, + "y": 4.0, + "z": 0.0 + } + ] + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/source/presentation/4.0/index.md b/source/presentation/4.0/index.md index efe5f6c64..1f6d9ac82 100644 --- a/source/presentation/4.0/index.md +++ b/source/presentation/4.0/index.md @@ -608,48 +608,7 @@ A Canvas in a Scene has a specific forward face and a backward face. By default, A [`PointSelector`][prezi-40-model-PointSelector] can be used to modify the point at which the Canvas will be painted, by establishing a new point to align with the top-left corner of the Canvas instead of the Scene coordinate origin. [Transforms](#transforms) can be used to modify Canvas rotation, scale, or translation, allowing in particular for an alternate method to control the size of a Canvas to be scaled appropriately to other contents within a Scene. The forward face and backward face of a Canvas can be interchanged with a Scale Transform scaling the z axis by -1.0, though this reflection will also produce mirroring. -```jsonc -{ - "id": "https://example.org/iiif/presentation/examples/nesting/anno2", - "type": "Annotation", - "motivation": ["painting"], - "body": - { - "type": "SpecificResource", - "source": { - "id": "https://example.org/iiif/presentation/examples/nesting/canvas/c1", - "type": "Canvas", - "width": 2, - "height": 2, - "items": [{ ... }] - }, - "transform": [ - { - "type": "ScaleTransform", - "x": 2.0, - "y": 2.0, - "z": -1.0 - } - ] - }, - "target": - { - "type": "SpecificResource", - "source": { - "id": "https://example.org/iiif/presentation/examples/nesting/scene/s1", - "type": "Scene" - }, - "selector": [ - { - "type": "PointSelector", - "x": 4.0, - "y": 4.0, - "z": 0.0 - } - ] - } -} -``` +{% include code_example.html src="uc07_canvas_into_scene.json" from=16 to=83 %} > **Key Points** From 56873b68d112c0470482e66bd4a099e65337a729 Mon Sep 17 00:00:00 2001 From: Glen Robson Date: Tue, 10 Mar 2026 23:11:07 +0000 Subject: [PATCH 16/19] Adding scene into scene example --- .../4.0/example/uc07_scene_into_scene.json | 104 ++++++++++++++++++ source/presentation/4.0/index.md | 18 +-- 2 files changed, 105 insertions(+), 17 deletions(-) create mode 100644 source/presentation/4.0/example/uc07_scene_into_scene.json diff --git a/source/presentation/4.0/example/uc07_scene_into_scene.json b/source/presentation/4.0/example/uc07_scene_into_scene.json new file mode 100644 index 000000000..c7f2243f0 --- /dev/null +++ b/source/presentation/4.0/example/uc07_scene_into_scene.json @@ -0,0 +1,104 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/presentation/4.0/example/uc07_scene_into_scene.json", + "type": "Manifest", + "label": { + "en": [ + "Use Case 7: Scene into Scene" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc07/scene/chess_board", + "type": "Scene", + "label": { "en": [ "3D Scene" ] }, + "backgroundColor": "#33404d", + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc07/chess_board/p1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc07/anno/1", + "type": "Annotation", + "motivation": [ "painting" ], + "body": { + "type": "SpecificResource", + "source": { + "id": "https://fixtures.iiif.io/3d/thomas_flynn/chess/Chess_Board.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "transform": [ + { + "type": "ScaleTransform", + "x": 10, + "y": 10, + "z": 10 + } + ] + }, + "target": { + "id": "https://iiif.io/api/presentation/4.0/example/uc07/scene/chess_board", + "type": "Scene" + } + }, + { + "id": "https://iiif.io/api/presentation/4.0/example/uc07/anno/2", + "type": "Annotation", + "motivation": [ "painting" ], + "body": { + "type": "SpecificResource", + "source": { + "id": "https://iiif.io/api/presentation/4.0/example/uc07/scene/pawn", + "type": "Scene", + "label": { "en": [ "Pawn" ] }, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc07/pawn/p1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/uc07/anno/3", + "type": "Annotation", + "motivation": [ "painting" ], + "body": { + "id": "https://fixtures.iiif.io/3d/thomas_flynn/chess/Pawn_white.glb", + "type": "Model", + "format": "model/gltf-binary" + }, + "target": { + "id": "https://iiif.io/api/presentation/4.0/example/uc07/scene/pawn", + "type": "Scene" + } + } + ] + } + ] + }, + "transform": [ + { + "type": "ScaleTransform", + "x": 10, + "y": 10, + "z": 10 + }, + { + "type": "TranslateTransform", + "x": -0.305286, + "y": 0.115202, + "z": -1.537951 + } + ] + }, + "target": { + "id": "https://iiif.io/api/presentation/4.0/example/uc07/scene/chess_board", + "type": "Scene" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/source/presentation/4.0/index.md b/source/presentation/4.0/index.md index 1f6d9ac82..78e0972a1 100644 --- a/source/presentation/4.0/index.md +++ b/source/presentation/4.0/index.md @@ -625,23 +625,7 @@ Like Timelines or Canvases, Scenes can be painted into Scenes. As with other res When a Scene is nested into another Scene, the [`backgroundColor`][prezi-40-model-backgroundColor] of the Scene to be nested should be ignored as it would have no meaningful effect. All Annotations painted into the Scene to be nested will be painted into the Scene into which content is being nested, including Light or Camera resources. If the Scene to be nested has one or more Camera Annotations while the Scene into which content is being nested does not, the first Camera Annotation from the nested Scene will become the default Camera for the overall Scene. -```jsonc -{ - "id": "https://example.org/iiif/presentation/examples/nesting/anno3", - "type": "Annotation", - "motivation": ["painting"], - "body": - { - "id": "https://example.org/iiif/presentation/examples/nesting/scene/s1", - "type": "Scene" - }, - "target": { - "id": "https://example.org/iiif/presentation/examples/nesting/scene/s2", - "type": "Scene" - } -} -``` - +{% include code_example.html src="uc07_scene_into_scene.json" from=46 to=98 %} # Annotations From 22e61ce3dd309cefdf7ce0b552ab8342737e0a00 Mon Sep 17 00:00:00 2001 From: Glen Robson Date: Wed, 11 Mar 2026 00:56:36 +0000 Subject: [PATCH 17/19] Adding example 9 annotation collections --- .../4.0/example/09_anno_collection.json | 15 ++ .../4.0/example/09_anno_page_1.json | 60 +++++++ .../4.0/example/09_anno_page_2.json | 47 +++++ .../presentation/4.0/example/09_manifest.json | 165 ++++++++++++++++++ source/presentation/4.0/index.md | 39 +---- 5 files changed, 290 insertions(+), 36 deletions(-) create mode 100644 source/presentation/4.0/example/09_anno_collection.json create mode 100644 source/presentation/4.0/example/09_anno_page_1.json create mode 100644 source/presentation/4.0/example/09_anno_page_2.json create mode 100644 source/presentation/4.0/example/09_manifest.json diff --git a/source/presentation/4.0/example/09_anno_collection.json b/source/presentation/4.0/example/09_anno_collection.json new file mode 100644 index 000000000..f7283876a --- /dev/null +++ b/source/presentation/4.0/example/09_anno_collection.json @@ -0,0 +1,15 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/presentation/4.0/example/09_anno_collection.json", + "type": "AnnotationCollection", + "label": { "en": [ "Diplomatic Transcription" ] }, + "total": 5, + "first": { + "id": "https://iiif.io/api/presentation/4.0/example/09_anno_page_1.json", + "type": "AnnotationPage" + }, + "last": { + "id": "https://iiif.io/api/presentation/4.0/example/09_anno_page_2.json", + "type": "AnnotationPage" + } +} \ No newline at end of file diff --git a/source/presentation/4.0/example/09_anno_page_1.json b/source/presentation/4.0/example/09_anno_page_1.json new file mode 100644 index 000000000..3297b1fbc --- /dev/null +++ b/source/presentation/4.0/example/09_anno_page_1.json @@ -0,0 +1,60 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/presentation/4.0/example/09_anno_page_1.json", + "type": "AnnotationPage", + "next": { + "id": "https://iiif.io/api/presentation/4.0/example/09_anno_page_2.json", + "type": "AnnotationPage" + }, + "partOf": [{ + "id": "https://iiif.io/api/presentation/4.0/example/09_anno_collection.json", + "type": "AnnotationCollection" + }], + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/959340ee-ab1a-44a6-a889-fa89f806101f", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": { + "type": "TextualBody", + "value": "as fine as their dashing ancestors. I expected to see a brick Temple in some commanding height a brick minster with its unrivalled carving. All in vain. Twenty five centuries have not passed for naught. What had it would have escaped the touch of time fell before the attack of barbarian invaders. That a vestige to ... one of the ..." + }, + "target": { + "id": "https://iiif.io/api/presentation/4.0/example/09/canvas/1#xywh=6,2473,2234,678", + "type": "Canvas" + } + }, + { + "id": "https://iiif.io/api/presentation/4.0/example/d236588e-31df-4b6e-af4b-13f74a2ba002", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": { + "type": "TextualBody", + "value": "in the gulf, the wild mountains, the lovely bays and promontories make a fascinating picture. The few extremely small villages perched high on the mountain side or lying in some pretty, retired bay, the absolute quiet which prevails cause one to imagine himself no longer in this world. He's transported back 2500 years to the balmy days of ancient Greece. The Greek expressions he hears from the few workmen whom he passes completes the spell. If only they looked as handsome, poetic, ..." + }, + "target": { + "id": "https://iiif.io/api/presentation/4.0/example/09/canvas/1#xywh=0,1576,2251,907", + "type": "Canvas" + } + }, + { + "id": "https://iiif.io/api/presentation/4.0/example/50d3bb57-966b-4c2c-b085-8638e7824fdf", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": { + "type": "TextualBody", + "value": "In my last book I stopped in a description of the road between Patras and Athens. I had gone as far as Corinth. From there to Athens nothing could be better for cycling, the road was perfect, being hard, white and smooth. The scenery was equally so. It would be difficult to find a more pleasant combination of surroundings to make a bicycle tour or a better road. Taking the road as a whole from Patras some persons would consider it bad. In parts there is nothing but a mule path which becomes so uneven as to compel one to walk now and then. This is, however the exception and where ever there is a road it is a good one. A cyclist will easily overlook what small difficulties there may be in this way for the pleasure of seeing the charming panorama constantly unrolled before his delighted eyes. The lovely tint of the waters" + }, + "target": { + "id": "https://iiif.io/api/presentation/4.0/example/09/canvas/1#xywh=4,213,2246,1345", + "type": "Canvas" + } + } + ] +} \ No newline at end of file diff --git a/source/presentation/4.0/example/09_anno_page_2.json b/source/presentation/4.0/example/09_anno_page_2.json new file mode 100644 index 000000000..ee0549ee2 --- /dev/null +++ b/source/presentation/4.0/example/09_anno_page_2.json @@ -0,0 +1,47 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/presentation/4.0/example/09_anno_page_2.json", + "type": "AnnotationPage", + "prev": { + "id": "https://iiif.io/api/presentation/4.0/example/09_anno_page_1.json", + "type": "AnnotationPage" + }, + "partOf": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/09_anno_collection.json", + "type": "AnnotationCollection" + } + ], + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/6ad3ab0c-cbab-403a-b4ee-93983675fcdf", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": { + "type": "TextualBody", + "value": "we started out to find the hotel which had been recommended to us. We were beset by a dozen dif-ferent porters of the various hotels. The rivalry was intense and caused great annoyance to travellers. We insisted upon finding our hotel by ourselves although there were several paters from the same at the station. Still one of them accompanied us to a carriage & invited us to enter. He explained to him in French that we were strong and accus-tomed to hoofing it. But still he accompanied us on ft. fearing, I think, that we would go to another hotel. After supper we wrote a little & then retired at 10. Sun. Jan. 4. 1891. After having a French Cafe we hunted about for a cheaper hotel. This we easily found in the Greek XereiSyror ETA dior, while we obtained a room for the both of us everything included. for 20 francs, or 40 French francs = F1.60 each." + }, + "target": { + "id": "https://iiif.io/api/presentation/4.0/example/09/canvas/2#xywh=3,1552,2268,1559", + "type": "Canvas" + } + }, + { + "id": "https://iiif.io/api/presentation/4.0/example/96b020c4-6a0a-437f-bca4-8463dd4f595f", + "type": "Annotation", + "motivation": [ + "supplementing" + ], + "body": { + "type": "TextualBody", + "value": "The guide book mentions rigorously all the sights celebrated in ancient annals. Let the guide book suffice for that. Anything I should attempt would fall so far short. Just beyond Corinth an extra engine was attached to our train to pull us up the low range of hills which forms the narrow Isthmus of Corinth. Here we had a good opportunity to see the Ships canal in progress. It will still take 2 yrs. to complete. It's a stupendous undertaking. The cold north wind blowing into the windows forced us to close them & rest satisfied in seeing the sights from the inside. The bit of railroad along the Saronic gulf, is very picturesque, built along the face of a cliff rising precipitously from the waters of the gulf where hardly a space can be blasted out in which to lay the track, it gives a tingle some feelings of insecurity. It affords a fine view of the gulf with the interesting old islands and mountains. Late in afternoon, in darkness 7.30 we steamed into Athens. After seeing to our bicycles" + }, + "target": { + "id": "https://iiif.io/api/presentation/4.0/example/09/canvas/2#xywh=12,16,2236,1539", + "type": "Canvas" + } + } + ] +} \ No newline at end of file diff --git a/source/presentation/4.0/example/09_manifest.json b/source/presentation/4.0/example/09_manifest.json new file mode 100644 index 000000000..daf55ee5b --- /dev/null +++ b/source/presentation/4.0/example/09_manifest.json @@ -0,0 +1,165 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/presentation/4.0/example/09_manifest.json", + "type": "Manifest", + "label": { + "en": [ + "William Lewis Sachtleben Athens travel diary" + ] + }, + "summary": { + "en": [ + "Example demonstrating an AnnotationCollection" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/09/canvas/1", + "type": "Canvas", + "height": 3152, + "width": 2251, + "label": { + "en": [ + "uclamss_1841_diary_07_02" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/09/canvas/1/page/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/09/annotation/1", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_02/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 3152, + "width": 2251, + "service": [ + { + "@context": "http://iiif.io/api/image/3/context.json", + "extraFormats": [ + "jpg", + "png" + ], + "extraQualities": [ + "default", + "color", + "gray" + ], + "height": 3152, + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_02", + "profile": "level1", + "protocol": "http://iiif.io/api/image", + "tiles": [ + { + "height": 512, + "scaleFactors": [ + 1, + 2, + 4 + ], + "width": 512 + } + ], + "type": "ImageService3", + "width": 2251 + } + ] + }, + "target": { + "id": "https://iiif.io/api/presentation/4.0/example/09/canvas/1", + "type": "Canvas" + } + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/09_anno_page_1.json", + "type": "AnnotationPage" + } + ] + }, + { + "id": "https://iiif.io/api/presentation/4.0/example/09/canvas/2", + "type": "Canvas", + "height": 3135, + "width": 2268, + "label": { + "en": [ + "uclamss_1841_diary_07_03" + ] + }, + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/09/canvas/2/page/1", + "type": "AnnotationPage", + "items": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/09/annotation/2", + "type": "Annotation", + "motivation": [ + "painting" + ], + "body": { + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_03/full/max/0/default.jpg", + "type": "Image", + "format": "image/jpeg", + "height": 3135, + "width": 2268, + "service": [ + { + "@context": "http://iiif.io/api/image/3/context.json", + "extraFormats": [ + "jpg", + "png" + ], + "extraQualities": [ + "default", + "color", + "gray" + ], + "height": 3135, + "id": "https://iiif.io/api/image/3.0/example/reference/9ee11092dfd2782634f5e8e2c87c16d5-uclamss_1841_diary_07_03", + "profile": "level1", + "protocol": "http://iiif.io/api/image", + "tiles": [ + { + "height": 512, + "scaleFactors": [ + 1, + 2, + 4 + ], + "width": 512 + } + ], + "type": "ImageService3", + "width": 2268 + } + ] + }, + "target": { + "id": "https://iiif.io/api/presentation/4.0/example/09/canvas/2", + "type": "Canvas" + } + } + ] + } + ], + "annotations": [ + { + "id": "https://iiif.io/api/presentation/4.0/example/09_anno_page_2.json", + "type": "AnnotationPage" + } + ] + } + ] +} \ No newline at end of file diff --git a/source/presentation/4.0/index.md b/source/presentation/4.0/index.md index 78e0972a1..b178cca35 100644 --- a/source/presentation/4.0/index.md +++ b/source/presentation/4.0/index.md @@ -655,43 +655,10 @@ Annotation Collections represent groupings of Annotation Pages that should be ma For Annotation Collections with many Annotations, there will be many pages. The Annotation Collection refers to the first and last page, and then the pages refer to the previous and next pages in the ordered list. Each page is part of the Annotation Collection. -```json -{ - "id": "https://example.org/iiif/book1/annocoll/transcription", - "type": "AnnotationCollection", - "label": {"en": ["Diplomatic Transcription"]}, - "total": 112, - "first": { "id": "https://example.org/iiif/book1/annopage/l1", "type": "AnnotationPage" }, - "last": { "id": "https://example.org/iiif/book1/annopage/l112", "type": "AnnotationPage" } -} -``` +{% include code_example.html src="09_anno_collection.json" %} -```jsonc -{ - "id": "https://example.org/iiif/book1/annopage/l2", - "type": "AnnotationPage", - "prev": "https://example.org/iiif/book1/annopage/l1", - "next": "https://example.org/iiif/book1/annopage/l3", - "items": [ - { - "id": "https://example.org/iiif/book1/annopage/l2/a1", - "type": "Annotation" - // ... - }, - { - "id": "https://example.org/iiif/book1/annopage/l2/a2", - "type": "Annotation" - // ... - } - ], - "partOf": [ - { - "id": "https://example.org/iiif/book1/annocoll/transcription", - "type": "AnnotationCollection", - } - ] -} -``` + +{% include code_example.html src="09_anno_page_1.json" %}