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) 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_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/04_scene.json b/source/presentation/4.0/example/04_scene.json new file mode 100644 index 000000000..d9479d738 --- /dev/null +++ b/source/presentation/4.0/example/04_scene.json @@ -0,0 +1,51 @@ +{ + "@context": "http://iiif.io/api/presentation/4/context.json", + "id": "https://iiif.io/api/presentation/4.0/example/04_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/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 b4e3a57c7..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,33 +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. -```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="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. @@ -322,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. @@ -353,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 @@ -395,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: @@ -428,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** @@ -600,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** @@ -736,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**